如何在React Native中清除TextInput焦点? (机器人)
我在这里寻找API:
https://facebook.github.io/react-native/docs/textinput.html#content
但没有结果......
任何人都可以提供帮助吗?
答案 0 :(得分:10)
我认为这应该有效。将onFocus作为道具添加到TextInput
。这假设您有一个名为text的状态变量,TextInput
从该状态变量中获取其值。
<TextInput
...
onFocus= {() => this.setState({text : ''})}
value={this.state.text}/>