我想在点击 corousel 中的项目时调用一个函数。下面是我的代码。
onPress(){
console.log("onPress");
}
_renderItem({item, index}) {
return (
<TouchableWithoutFeedback
onPress={this.onPress.bind(this)}>
<View style={styles.slide}>
<Image
source={{ uri: item.row.image_name }}
style={styles.image}
/>
</View>
</TouchableWithoutFeedback>
);
}
当我单击该项目时,我收到错误消息_this6.onPress is not a function
。
我可以直接点击如下所示的警报。
<TouchableWithoutFeedback onPress={()=>{ Alert.alert("onPress");}}>
如何在项目点击上调用方法?