我对React很陌生,所以我要设置的主类遇到了问题。我以为,当您设置构造函数时,需要设置super()才能使用“ this”。但是,我收到此错误:“ SyntaxError:super()仅在派生类构造函数中有效”。我找不到其他人遇到此问题。有关课程如下。
class TheClassName extends React.Component {
contructor(props) {
super(props);
this.state = {stuff: Array(10).fill(null), stufftwo: false, stuffthree: 'Stuff'};
}
}
答案 0 :(得分:2)
您忘记了s
中的constructor
。 :-)