你懂的 发表于 2018-9-19 21:05:39

React绑定事件处理函数this的几种方法



在以类继承的方式定义的组件中,为了能方便地调用当前组件的其他成员方法或属性(如:this.state),通常需要将事件处理函数运行时的 this 指向当前组件实例。


绑定事件处理函数this的几种方法:


React绑定事件处理函数this的第一种方法:

   run(){
                alert(this.state.name)

          }

          <button onClick={this.run.bind(this)}>按钮</button>

React绑定事件处理函数this的第二种方法:


      构造函数中改变

      this.run = this.run.bind(this);


         run(){

                alert(this.state.name)

          }

         <button onClick={this.run>按钮</button>



React绑定事件处理函数this的第三种方法:


         run=()=> {

                  alert(this.state.name)

          }

      <button onClick={this.run>按钮</button>

      



页: [1]
查看完整版本: React绑定事件处理函数this的几种方法