给出以下代码:
var
React = require("react")
;
class ControlText extends React.Component {
constructor(props){
super(props);
this.state = {
value: ""
};
}
update() {
console.log(event);
this.setState({value: event.target.value});
}
render() {
console.log(this.state);
var value = this.state.value;
return <input type="text" value={value} onChange={this.update.bind(this)} />
}
}
module.exports = ControlText;
每次我在update()中记录事件对象时,它都会返回一个对象target: null
,this.state.value
更新""
到undefined
。此代码与Forms docs上的示例差异很小,为什么我似乎无法获得事件目标?