问题:
箭头函数无法识别
原因:
优先级比较低
解决方法:
直接绑定 this,
在构造函数里 this.handleChange = this.handleChang.bind(this),
或者在组件上 <App onChange={ value => this.handleChange } />,
不过后者会进行重新渲染。
箭头函数无法识别
优先级比较低
直接绑定 this,
在构造函数里 this.handleChange = this.handleChang.bind(this),
或者在组件上 <App onChange={ value => this.handleChange } />,
不过后者会进行重新渲染。