焦点不适用于React Native TextInput

时间:2016-10-26 18:57:02

标签: reactjs react-native

我有一个多行textinput,我想在onComponentDidMount函数中关注它。如果我只是将autoFocus道具设置为' true'相反,那么一切正常。但如果我想通过this.refs.myRefName.focus()手动对焦,我会收到一条错误消息,通知我这不是一个函数。但是,我之前在React Native中使用了它所期望的效果(我目前正在使用v0.36.0)。那么,你现在如何手动聚焦文本输入呢?

1 个答案:

答案 0 :(得分:0)

自动对焦现在可以在Android上使用此拉取请求pull request进行操作,无需在componentDidMound中调用focus()函数。仅设置足够的autoFocus = {true}。