0
如何比較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{
...
}
你可以顯示兩個項目你可能會比較的,你在做什麼樣的比較的例子嗎?謝謝。 –
我編輯了這個問題。 – user5918250