在完成jQuery Ajax调用时控制请求

我使用$.post()使用Ajax调用服务器,然后使用JTemplate将数据写入当前页面。 但是,如果会话超时,服务器将发送重定向指令以将用户发送到登录页面。 在这种情况下, jQuery正在用登录页面的内容替换div元素,强制用户的眼睛确实见证一个罕见的场景。

如何使用jQuery 1.9Ajax调用管理重定向指令?


您必须使用json数据来响应客户端。 例如:在PHP文件中

<?php
//for example, data you want to response to client is a html string
$data = '<table></table>';
if($is_timeout && $is_ajax_request) {
   //shouldn't redirect, should return json_encode
   echo json_encode(array('timeout'=>1));
   die();
}else{
   echo json_encode(array('data'=>$data));
   die();
}

在你的javascript post你可以编辑如下:

$.post('your_url_to_php_file',{data:data_to_post}, function(resp){
   var data = jQuery.parseJSON(resp);
   if(data.timeout) {
      alert("timeout");
      return;
   }else{
      $("#your_div").html(data.data);
   }
})
链接地址: http://www.djcxy.com/p/1967.html

上一篇: Control a request when a jQuery Ajax call done

下一篇: Abort Ajax requests using jQuery