标签:str ons reac input 使用 返回 es6 efi undefined
在es6写法中,绑定事件的事件的回调是全局,顾返回的为undefined
解决办法:
1.使用es6箭头函数,箭头函数this默认指向上一层级的环境 如 <input onChange={()=>this.change()} />
2.使用bind绑定this ,写在constructor里 如 this.change = this.change.bind(this);
标签:str ons reac input 使用 返回 es6 efi undefined
原文地址:http://www.cnblogs.com/rp-jscript/p/7787078.html