即使它是onPress,也会不断调用React Native AlertIOS.prompt(args)

时间:2015-10-22 15:40:56

标签: react-native

我添加了代码文本组件,如下所示:

      <Text 
        style={styles.text}
        onPress={
          AlertIOS.prompt(
            'title', 'defaultValue',  
            [{text: 'Cancel', onPress: this.onCancel.bind(this)}, 
            {text: 'OK', onPress: this.onOk.bind(this)}])}
        >
          press me!
      </Text>

但是当我运行模拟器时,在安装屏幕后立即调用提示并不断显示,无论我是否单击其上的确定/取消按钮。

我的代码中没有其他任何AlertIOS.prompt()调用。

我做错了什么或者这是React-native中的错误?

0 个答案:

没有答案