答案 0 :(得分:0)
您应该function
来处理onChange
的{{1}} value
,如下所示。
这是处理input field
onChange
的方法
text input
这就是您的 handleOnChange(event){
console.log('the input text is :', event.target.value);
this.setState({
//set the value for what you want here
});
}
字段的外观。
input
希望这会对你有所帮助。