React Native TextInput ref 始终未定义
React Native TextInput ref always undefined
我有一个简单的 TextInput,我想在我的渲染中放置一个引用:
<View>
<TextInput ref={(component) => this._inputElement = component}>Input</TextInput>
{console.log(this._inputElement)}
<Button
onPress={this.addAddress}
title="Submit"
color="#841584"
/>
</View>
然后我想在我的构造函数中绑定的函数中使用该引用:
constructor(props) {
super(props);
this.state = {
addresses: []
};
this.addAddress = this.addAddress.bind(this);
}
添加地址函数:
addAddress(event, result) {
console.log("reference:", this._inputElement.value);
}
render 和 addAddress 中的控制台日志始终未定义。
我环顾四周,但似乎没有人遇到我的问题,通常他们有错字或没有绑定他们想调用的函数。
为什么我好像没有参考资料?
Textinput自封装
<View>
<TextInput ref={ref=> (this._inputElement = ref)}/>
<Button
onPress={this.addAddress}
title="Submit"
color="#841584"
/>
</View>
addAddress(event, result) {
console.log("reference:", this._inputElement._lastNativeText); //this get's the value, otherwise it's undefined
}
使用状态
通常使用TextInput
的方式是将值存储在state中。
请记住将您所在州的地址初始化为空字符串,否则地址为空值可能会导致错误。
constructor(props) {
super(props)
this.state = {
....
address: ''
}
}
然后你可以定义你的文本输入如下
<TextInput
onChangeText={address => this.setState({address})}
value={this.state.address}
/>
然后在你的地址
addAddress(event, result) {
console.log("reference:", this.state.address);
}
使用引用
或者您可以使用 ._lastNativeText
从引用中访问它
<TextInput
ref={ref => { this._inputElement = ref }}>
Input
</TextInput>
然后在您的地址中
addAddress(event, result) {
// I always check to make sure that the ref exists
if (this._inputElement) {
console.log("reference:", this._inputElement._lastNativeText);
}
}
我不推荐第二种方法,因为您正在访问可能会在未来版本中更改的私有方法。
我有一个简单的 TextInput,我想在我的渲染中放置一个引用:
<View>
<TextInput ref={(component) => this._inputElement = component}>Input</TextInput>
{console.log(this._inputElement)}
<Button
onPress={this.addAddress}
title="Submit"
color="#841584"
/>
</View>
然后我想在我的构造函数中绑定的函数中使用该引用:
constructor(props) {
super(props);
this.state = {
addresses: []
};
this.addAddress = this.addAddress.bind(this);
}
添加地址函数:
addAddress(event, result) {
console.log("reference:", this._inputElement.value);
}
render 和 addAddress 中的控制台日志始终未定义。
我环顾四周,但似乎没有人遇到我的问题,通常他们有错字或没有绑定他们想调用的函数。
为什么我好像没有参考资料?
Textinput自封装
<View>
<TextInput ref={ref=> (this._inputElement = ref)}/>
<Button
onPress={this.addAddress}
title="Submit"
color="#841584"
/>
</View>
addAddress(event, result) {
console.log("reference:", this._inputElement._lastNativeText); //this get's the value, otherwise it's undefined
}
使用状态
通常使用TextInput
的方式是将值存储在state中。
请记住将您所在州的地址初始化为空字符串,否则地址为空值可能会导致错误。
constructor(props) {
super(props)
this.state = {
....
address: ''
}
}
然后你可以定义你的文本输入如下
<TextInput
onChangeText={address => this.setState({address})}
value={this.state.address}
/>
然后在你的地址
addAddress(event, result) {
console.log("reference:", this.state.address);
}
使用引用
或者您可以使用 ._lastNativeText
从引用中访问它
<TextInput
ref={ref => { this._inputElement = ref }}>
Input
</TextInput>
然后在您的地址中
addAddress(event, result) {
// I always check to make sure that the ref exists
if (this._inputElement) {
console.log("reference:", this._inputElement._lastNativeText);
}
}
我不推荐第二种方法,因为您正在访问可能会在未来版本中更改的私有方法。