React Native:panresponder本机事件标识符未定义

时间:2016-07-12 17:32:31

标签: javascript reactjs native

我有一个观点

<View style={styles.container} id={'time2'}>
  <Text>hello</Text>
</View>

和onComponentWillMount,我有一个pan处理程序(在PanResponder.create中)

onPanResponderGrant: (evt, gestureState) => {
  console.log('identifier', evt.identifier);
}

但是当我按下视图时,标识符将被打印为未定义。目标也未定义。如何打印出我的视图ID?

1 个答案:

答案 0 :(得分:2)

您必须从evt:

的nativeEvent属性访问标识符
build/scripts/script1.js  
build/scripts/script2.js