是什么导致jquery.ajax响应时间长达17秒或更长时间

时间:2014-09-21 15:50:20

标签: javascript jquery ajax

我只想问一些帮助,是什么原因导致jquery.ajax响应时间过长需要17秒或更长时间,有时我的响应时间为40秒。

这是代码

 $(function(){
      getUpdates();

  });


   function getUpdates(){
           type: "GET",
           dataType:'json',
           url: "updates.php",
           error: function () {
               setTimeout(getUpdates, 5000);
           },
           success: function(data){
              //do something with the data


          ...
          ...
          ...
             setTimeout(getUpdates, 5000); //call again the function

       }

   });

}

0 个答案:

没有答案