完成jQuery Ajax调用时控制请求

时间:2016-02-25 15:48:52

标签: javascript jquery ajax xmlhttprequest

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

如何使用AjaxjQuery 1.9来电管理重定向指令?

1 个答案:

答案 0 :(得分:1)

您必须使用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);
   }
})