如何确定在React Native中获取数据的时间

时间:2018-09-08 11:01:14

标签: react-native

我在react native中编写了一个方法,该方法从服务器获取一些数据。然后我制作一个模态来显示此消息:“正在接收数据!”。现在,我想知道如何确定此操作的时间。例如,在10秒钟后,我显示一条消息“ Internet连接未连接!”。 谢谢前进。

1 个答案:

答案 0 :(得分:0)

获取时使用此功能 ShowAlertWithDelay =()=> {

setTimeout(function(){

  //Put All Your Code Here, Which You Want To Execute After Some Delay Time.
  Alert.alert("Alert Shows After 5 Seconds of Delay.")

}, 5000);

}