react-native android:TextInput会短暂忽略值prop

时间:2018-08-23 02:42:08

标签: android reactjs react-native

这是在Android上,带有react-native v0.55.4。

<TextInput
  value="should always be this value"
/>

当我在此TextInput中键入内容时,该文本将使用我输入的任何新文本进行短暂更新,然后返回显示“应该始终是此值”。

例如,如果我键入“ X”,则文本将短暂更新为“应始终为该值X”,然后返回“应始终为该值”,从而在TextInput内部产生抖动。

编辑:文档解决了此问题:https://facebook.github.io/react-native/docs/textinput#value

1 个答案:

答案 0 :(得分:0)

仅基于该短代码段,您需要将值设置为state属性。

constructor(props) {
 super(props);
 this.state = {
   textInput: 'Should always be this value'
 }
}

还有您的文字输入

<TextInput
 value={this.state.textInput}
 onChangeText={text => this.setState({ textInput: text }) }
/>

这里有一些docs