Home > ES6クラス


ReactJSでのES6クラスとJSXでのイベントリスナーの設定方法

メソッドバインディングを使用する方法: ES6クラスのコンストラクタ内で、イベントハンドラメソッドをバインドすることができます。class MyComponent extends React.Component { constructor(props) { super(props); this.handleClick = this.handleClick.bind(this); } handleClick() { // イベントハンドラの処理 } render() { return <button onClick={this.handl>>More