PhoneGap中文网
标题:
React绑定事件处理函数this的几种方法
[打印本页]
作者:
你懂的
时间:
2018-9-19 21:05
标题:
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>
复制代码
欢迎光临 PhoneGap中文网 (http://bbs.phonegap100.com/)
Powered by Discuz! X3.2