我有一个观点
<View style={styles.container} id={'time2'}>
<Text>hello</Text>
</View>
和onComponentWillMount,我有一个pan处理程序(在PanResponder.create中)
onPanResponderGrant: (evt, gestureState) => {
console.log('identifier', evt.identifier);
}
但是当我按下视图时,标识符将被打印为未定义。目标也未定义。如何打印出我的视图ID?
答案 0 :(得分:2)
您必须从evt:
的nativeEvent属性访问标识符build/scripts/script1.js
build/scripts/script2.js