检测ajax成功函数何时需要超过5秒并重定向

时间:2017-03-29 00:29:03

标签: javascript php jquery ajax

您好我有这个脚本从一个页面移动到一个没有页面加载的href。

它运行正常,但如果 Ajax 需要超过5秒的响应时间,我想重定向到请求的页面,这通常是由于网络连接速度很慢造成的。 在这种情况下:停止脚本并正常加载页面。

首先是href:

<a href="new.php" rel="tab">new</a>
<a href="new1.php" rel="tab">New 1</a>  

这是剧本:

<script>
$(function(){ 
  $("a[rel='tab']").click(function(e){
    pageurl = $(this).attr('href'); //get the href clicked
    $.ajax({url:pageurl+'?rel=tab',
      success: function(data){
        $('#mole').html(data); 
      }
    }); 
    if(pageurl!=window.location){
      window.history.pushState({
        path:pageurl
      },'',pageurl);    
    }
    return false;  
  });
});

$(window).bind('popstate', function(){
  $.ajax({
    url:location.pathname+'?rel=tab',
    success: function(data){
      // here how do I detect if the success takes longer than 5 seconds
      // stop the script and load the page normally which is the URL parameter in ajax
      $('#mole').html(data); 
    }
  }); 
}); 
</script>

1 个答案:

答案 0 :(得分:1)

首先,我们需要为ajax处理程序添加一个超时,以便它在5秒后取消请求(这里我们使用5000毫秒)。然后,根据docs,前往error,您可以看到第二个参数是textStatus。如果是超时,则等于"timeout"。这可能是您最简单的途径。根据您的功能需要更新错误处理程序。

$(window).bind('popstate', function() {
    var url = location.pathname + '?rel=tab';
    $.ajax({
        timeout: 5000,
        url: url,
        success: function(data) {
            $('#mole').html(data);
        },
        error: function(jqXHR, textStatus) {
            if (textStatus === 'timeout') {
                // we know the ajax failed due to a timeout,
                // do what you need here, below is an example.
                window.location = url;
            }
        }
    });
});