如何在React Native中比较两个文本对象?
抱歉,如果这个问题太麻烦了。但我花了一个小时调查了所有的可能性,还是找不到正确的答案。
constructor(props) {
super(props)
this.state = { text: ''}
}
render() {
return (
<View style={styles.container}>
<TextInput
style={styles.inputText}
onChangeText={this.onChangeDo(this)}
/>
</View>
);
}
onChangeDo(event){
(text) => this.setState( {text} )
if(text equals 'string'){
...
}
else{
...
}
2条答案
按热度按时间xuo3flqw1#
好的,你可以检查文本,然后在onChangeText函数中设置变量的状态。Here是一个例子,我也粘贴了下面的代码。
https://rnplay.org/apps/pWvSsg
am46iovg2#