onRadioPressed
似乎沒有被調用 - 我做錯了什麼?我還需要獲取「點擊」項中包含的文字。React Native onpress無法正常工作
我相信我可以通過event.nativeEvent.text
得到,對嗎?
感謝您的任何幫助。
class RadioBtn extends React.Component {
constructor(props) {
super(props);
this.state = {
};
}
onRadioPressed(event) {
console.log('RADIOBUTTON PUSHED:');
}
render() {
return (
<View style={styles.radioGrp}>
<View style={styles.radioContainer}>
<TouchableHighlight onpress={() => this.onRadioPressed.bind(this)} underlayColor='#f1c40f'>
<Text style={styles.radio}>Left</Text>
</TouchableHighlight>
</View>
<View style={styles.radioContainer}>
<TouchableHighlight onpress={() => this.onRadioPressed.bind(this)} underlayColor='#f1c40f'>
<Text style={styles.radio}>Right</Text>
</TouchableHighlight>
</View>
</View>
);
}
}
謝謝 - 我剛剛在onPress上錯過了大寫字母「P」! – miarde