码迷,mamicode.com
首页 > 其他好文 > 详细

react es6中 this undefined

时间:2017-11-05 13:06:03      阅读:125      评论:0      收藏:0      [点我收藏+]

标签: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);       

  

  

react es6中 this undefined

标签:str   ons   reac   input   使用   返回   es6   efi   undefined   

原文地址:http://www.cnblogs.com/rp-jscript/p/7787078.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!