javascript – 递归setTimeout模式

前端之家收集整理的这篇文章主要介绍了javascript – 递归setTimeout模式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在阅读Long Polling上的一篇文章时,我对以下两种setInterval之间的问题感到困惑

1 –

setInterval(function(){
    $.ajax({ url: "server",success: function(data){
        //Update your dashboard gauge
        salesGauge.setValue(data.value);
    },dataType: "json"});
},30000);

2-

(function poll() {
   setTimeout(function() {
       $.ajax({ url: "server",success: function(data) {
            sales.setValue(data.value);
       },dataType: "json",complete: poll });
    },30000);
})();

根据博客,它说 – 关于第二个片段,

So,this pattern doesn’t guarantee execution on a fixed interval per
se. But,it does guarantee that the prevIoUs interval has completed
before the next interval is called
.

为什么第二个片段保证前一个间隔已经完成?

我知道第一个(事件循环)但很少混淆第二个片段.

最佳答案

Why second snippet guarantee that the prevIoUs interval has completed?

在第一个示例中,无论先前的$.ajax()调用是否完成,都会以一定间隔调用$.ajax().

在第二个示例中,直到$.ajax()的完整函数再次调用poll.

原文链接:https://www.f2er.com/jquery/427766.html

猜你在找的jQuery相关文章