React - uncaught TypeError:无法读取未定义的属性'setState'
2022-08-29 23:23:30
我收到以下错误
未捕获的类型错误:无法读取未定义的属性“setState”
即使在构造函数中绑定 delta 之后也是如此。
class Counter extends React.Component {
constructor(props) {
super(props);
this.state = {
count : 1
};
this.delta.bind(this);
}
delta() {
this.setState({
count : this.state.count++
});
}
render() {
return (
<div>
<h1>{this.state.count}</h1>
<button onClick={this.delta}>+</button>
</div>
);
}
}