2
我可以使用這些選項中的任何一個嗎?他們都以同樣的方式工作嗎?我正在使用ES6。在React中使用bind(this)
onChange={this.makeChange.bind(this)}
onChange={() => this.makeChange()}
constructor(props) {
super(props);
this.makeChange = this.makeChange.bind(this);
}
您還可以找到一些示例,瞭解如何防止在[eslint-plugin-react存儲庫]中使用綁定(https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-bind.md)在** Protips **下 – dschu