如何使用ReactJS从<input />检索值?

时间:2017-05-22 04:05:41

标签: reactjs

1 个答案:

答案 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

希望这会对你有所帮助。