SyntaxError:super()仅在派生类构造函数中有效

时间:2019-04-21 20:33:32

标签: javascript reactjs

我对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'};

}


}

1 个答案:

答案 0 :(得分:2)

您忘记了s中的constructor。 :-)