如何在一定时间后自动关闭警报 React Native

How to automatically close an alert after a certain time React Native

我想在几秒钟后自动关闭警报,而无需用户自行关闭。

如果可能的话,我想使用 Alert(而不是 AlertIOS)来做到这一点,但如果只有 AlertIOS 有它,那么我想我别无选择。

非常感谢!

我建议你使用Modal组件

<Modal
  animationType={"slide"}
  transparent={false}
  visible={this.state.modalVisible}></Modal>

因此您可以在您的函数中调用 setTimeout() 来更新状态变量 modalVisible 以显示/隐藏它。可以在此处从官方文档中找到更多示例 (https://facebook.github.io/react-native/docs/modal.html)