首页 > TAG信息列表 > clickHander

React事件处理方法中this指向为undefined的四种解决方案

React事件处理方法中this指向为undefined的四种解决方案: 1. 定义事件后使用bind绑定this return ( <div> <button onClick={this.clickHander.bind(this)}>Click</button> </div> ) 2. 在构造函数内部声明this指向 constructor() { super()