다음과 같은 오류가 발생합니다
잡히지 않은 TypeError : 정의되지 않은 'setState'속성을 읽을 수 없습니다
생성자에서 델타를 바인딩 한 후에도.
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>
);
}
}