React 事件绑定this指向

1. 推荐:使用class的实例方法

class Hello extends React.Component {
    handleClick = () => {
        this.setState({ ... })
    }
}

2. 箭头函数

<button onClick={() => { this.handleClick() }} />

3. bind

constructor () {
  super()
  this.handleClick = this.handleClick.bind(this)    
}

 

React 事件绑定this指向

上一篇:Docker命令图


下一篇:【ABC 214D】Sum of Maxinum Weights