如何停止ajax请求?

时间:2013-02-27 08:02:46

标签: php jquery ajax clearinterval

我有多个ajax请求,当其中一个无法获取我想要的数据时,我会重新发送它直到它可以获取数据。 在获取数据后我无法阻止它的问题。在ajax中有休息或类似的东西吗? 我试过clearinterval但它没有用 这是我的功能:

  function ajaxGetServerDatabase(Div,val,interval){
       console.log(val);
       dbs[val]=new Array();
        $('#bck_action').val('get_DB');
        $('#server_ip').val(val);
        post_data = $('#'+Div+' *').serialize();
        $.ajax({
            type: "POST",
            url: document.URL,
            data: post_data,

            dataType: "text",
            success: function(response) {

                if (response!='no_connection'){
                    dbs[val]=JSON.parse(response)
                    clearInterval(this.interval);  // ???? 
                }

            }
        });
        return false;
    }

  function ajaxGetDatabase(Div,ips,interval){
    $.each(ips,function(i,val){
       dbs[val]=new Array();
        $('#bck_action').val('get_DB');
        $('#server_ip').val(val);
        post_data = $('#'+Div+' *').serialize();
        //    console.log(post_data);
        $.ajax({
            type: "POST",
            url: document.URL,
            data: post_data,

            dataType: "text",
            success: function(response) {

                if (response!='no_connection'){
                    dbs[val]=JSON.parse(response)
                }
                else
               {
                   setInterval("ajaxGetServerDatabase('"+Div+"','"+val+"','"+interval+"')", interval);
               }
            }
        });
    });

    return false;
}

我称之为:

  ajaxGetDatabase('tab_backup',ips,3000);

5 个答案:

答案 0 :(得分:0)

var timer = null;
function ajaxGetServerDatabase(Div,val,interval){
   //...
   if (response!='no_connection'){
                dbs[val]=JSON.parse(response)
                clearInterval(timer);  // ???? 
            }
   //....
   else
           {
               timer = setInterval("ajaxGetServerDatabase('"+Div+"','"+val+"','"+interval+"')", interval);
           }

答案 1 :(得分:0)

clearIntervalajax无关。它只是一个定时器功能,其范围是使用setInterval清除之前设置的定时器。如果您真的想使用计时器功能,则需要将变量附加到setInterval函数,您可以使用clearInterval设置作为setInterval中先前定义的id参数清除该函数。

var id = " ";
success: function(response) {

   if (response!='no_connection'){
       dbs[val]=JSON.parse(response)
       clearInterval(id);
   }
   else                   
       id= setInterval("ajaxGetServerDatabase('"+Div+"','"+val+"','"+interval+"')", interval);
}

或者您可以使用ajax abort中止代码。

答案 2 :(得分:0)

也许接近这个?

...
var stopAjax = 0;  //switch is on
if(stopAjax == 0){

  $.ajax({
    ...
    success: function(response) {
    if (response!='no_connection'){
       dbs[val]=JSON.parse(response);
       stopAjax = 1; //switch is off
    }
    else{
        setInterval("ajaxGetServerDatabase('"+Div+"','"+val+"','"+interval+"')", interval);
      }
    }
  });
}

答案 3 :(得分:0)

这是答案: 在ajaxGetDatabase中:

 success: function(response) {

                if (response!='no_connection'){
                    dbs[val]=JSON.parse(response)

                }
                else
                {
                 id=setInterval("ajaxGetServerDatabase('"+Div+"','"+val+"')", interval);
            }
在ajaxGetServerDatabase中:

    success: function(response) {
            if (response!='no_connection'){
                dbs[val]=JSON.parse(response)
                clearInterval(id);
            }

        }

没有范围参数

 var id;

使它一般并且多个服务器的工作已停止(多个ajax请求失败)我使用数组来保存这样的ID:

   var ids=new Array();

   ids[val]=setInterval("ajaxGetServerDatabase('"+Div+"','"+val+"')", interval);

   clearInterval(ids[val]);    

答案 4 :(得分:0)

您是否正在寻找timeout设置?例如

$.ajax({
    timeout: 10000,
    ...
});

http://api.jquery.com/jQuery.ajax/