jsx箭头函数无法识别

问题:

箭头函数无法识别

原因:

优先级比较低

解决方法:

直接绑定 this,
在构造函数里 this.handleChange = this.handleChang.bind(this),
或者在组件上 this.handleChange } />,
不过后者会进行重新渲染。

你可能感兴趣的:(jsx箭头函数无法识别)