码迷,mamicode.com
首页 > 其他好文 > 详细

setInterval()解决异步加载,参数传递问题

时间:2020-01-19 14:11:34      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:方法   set   ams   返回   nts   this   解决   var   wan   

如题,在异步加载获取页面数据时,有时会调用其他组件,当在传参时有时并不是所有参数都已加载。

异步加载数据获取异常的解决方法:setInterval()

setInterval()这个方法可按照指定的周期(以毫秒计)来调用函数或计算表达式。 

setInterval(x(),y); 

x()代表你调用的方法,

y是每隔多长时间调用一次x()方法 

例如: setInterval(x(),1000); 
    每隔1秒调用一次x()方法 

setInterval() 方法会不停地调用函数,直到clearInterval()被调用或窗口被关闭。
由 setInterval() 返回的 ID 值可用作 clearInterval() 方法的参数。

如下: var stv = setInterval(() => {},1000);

      在{}的方法里面调用clearInterval(stv ) 方法,把返回值作为参数。

示例代码如下:

     var stv = setInterval(() => {

    var id = this.id;

    if(id !=0 && id != undefined){ 

      clearInterval(stv);

      //todo

     }

   },1000);

 

后记:There are mements in life when you miss someone so much that you just want to pick them from your dreams and hug them for real!

Dream what you want to dream,go where you want to go,be what you want to be,

because you have only one life and one chance to do all the things you want to do.

setInterval()解决异步加载,参数传递问题

标签:方法   set   ams   返回   nts   this   解决   var   wan   

原文地址:https://www.cnblogs.com/UsefulIdiot/p/12213403.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!