我有一個TextInput,我想在我的函數中引用。refs not working in react-native
next() {
let body = this.refs.body.value
}
<View>
<Text>Place the body here</Text>
<TextInput ref="body" placeholder="Your body goes here..." style={styles.body} placeholderTextColor='green'/>
</View>
但我收到此錯誤:
undefined is not an object (evaluating 'this.refs.body')
是ref
不工作的反應,本土?
是的,我認爲是。組件渲染後,我可以按下一個按鈕。這是否意味着我可以在'componentDidMount'後面按下?我很抱歉,我很新。 –