React 组件中处理 onClick 类似事件绑定的时候,是需要显式给处理器绑定上下文(context)的,这一度使代码变得冗余和难看。 请看如下的示例: class App extends Component { constructor() { super(); this.state = { isChecked: false }; } render() { return ( check me: <input type=checkbox c