react 事件绑定

方法1、在constructor中使用bind绑定

  this.handleClick = this.handleClick.bind(this)

 

方法2、公共类字段使用回调

  handleClick = () =>{

   

  }

 

方法3、在调用函数的地方使用箭头函数

  

<button onClick={(e) => this.handleClick(e)}>
        Click me
 </button>
posted @ 2018-08-16 10:42  去有风的地方  阅读(117)  评论(0编辑  收藏  举报