我一直使用类似的东西
class MyComponent extends React.Component {
constructor(props) {
super(props)
this.state = {
var1 : undefined,
var2 : 'etc...',
}
}
}
但是今天我注意到在 VS Code 中工作时有一条删除线super(props)
,这是以前从未有过的!?