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) }