React-Native获取文本框的值

时间:2021-01-03 00:56:08

要想获取文本框的值,首先我们需要看一下官方文档的解释:

React-Native获取文本框的值

这里的意思是说当文本框的内容改变的时候,文本框的输入的内容就会作为一个参数进行传递。因此我们就可以获取到文本框里面的内容就好了。

   constructor (props) {
super (props)
this.state = {
screen: this.initScreen(),
txtValue: null,
dataSource: new ListView.DataSource({
rowHasChanged: (row1, row2) => row1 !== row2
}),
loaded: false
}
} 。。。。 <TextInput
selectTextOnFocus = {true}
onChangeText={(text) => {
this.state.txtValue = text
this.getContent()
}} 。。。 getContent () {
ToastAndroid.show(this.state.txtValue, ToastAndroid.LONG)
}