React(2) --super關鍵字
阿新 • • 發佈:2018-12-09
參考:http://www.phonegap100.com/thread-4911-1-1.html
Es6中的super可以用在類的繼承中,super關鍵字,它指代父類的例項(即父類的this物件)。子類必須在constructor方法中呼叫super方法,否則新建例項時會報錯。這是因為子類沒有自己的this物件,而是繼承父類的this物件,然後對其進行加工。如果不呼叫super方法,子類就得不到this物件。
class Person { constructor (name) { this.name = name; } }class Student extends Person { constructor (name, age) { super(); // 用在建構函式中,必須在使用this之前呼叫 this.age = age; } }
為什麼官方的列子裡面寫個super(props):
只有一個理由需要傳遞props作為super()的引數,那就是你需要在建構函式內使用this.props
那官方提供學習的例子中都是寫成super(props),所以說寫成super(props)是完全沒問題的,也建議就直接這樣寫。