react-native:不能通过按下按钮来关注TextInput

时间:2017-07-19 07:47:58

标签: react-native react-native-android

我想专注于TextInput并通过按下按钮弹出键盘。但它没有工作。那怎么解决呢? 这是我的代码。

<TextInput ref="myInput"  />
<Text onPress={()=> this.refs["myInput"].focus()>custom</Text>

1 个答案:

答案 0 :(得分:1)

替换此行:

<Text onPress={()=> { this.refs.myInput.focus();} }>custom</Text>

您尚未关闭}大括号和语法问题