react添加方法的两种形式

Posted on 2019-01-15 21:58  猫头唔食鱼  阅读(578)  评论(0编辑  收藏  举报

1.使用bind

<button onClick={this.test.bind(this)}>确定</button>

 也可以这么写:

<button onClick={this.test}>确定</button>

在constructor里把bind赋值给方法

 constructor(props){
    super(props);
    this.state= {
      haha:"123"
    }
    this.test = this.test.bind(this);
  }

 

2.使用箭头函数

 <button onClick={()=>this.test2()}>确定</button>

 也可以这么写

 <button  onClick={this.test2}>确定</button>
  test2=()=>{
    console.log(222);
    console.log(this.state.haha);
  }