1
私はcopenでreactjs v15をプレイしています。 https://codepen.io/dotku/pen/QqwgVV?editors=1010予期せぬトークン= on reactjsのイベントハンドルon v15
class Welcome extends React.Component {
_handleClick = (e) => {
console.log(ReactDOM.findDOMNode(this.refs.input));
}
render() {
return <div>
<h1>Hello, {this.props.name}</h1>
<button onKeyPress={this._handleClick}>click</button>
<input ref="input"/>
</div>;
}
}
const element = <Welcome name="Sara" />;
ReactDOM.render(
element,
document.getElementById('root')
);
誰もが任意のアイデア理由があります。私はここで
_handleClick = (e) => {
console.log(ReactDOM.findDOMNode(this.refs.input));
}
は私の完全codepen上でコードを反応さライン上unexpected token = error
を得ましたか。
の可能性のある重複した[クラスメソッドとして矢印機能(パブリッククラスフィールド)の使い方は?](https://stackoverflow.com/questions/31362292/how-to-use-arrow-functions-public-クラスフィールドとしてのクラスメソッド) –