gpt4 book ai didi

javascript - 如何在 ajaxStart 或 ajaxSend 中中止 AJAX 请求?

转载 作者:行者123 更新时间:2023-11-29 15:51:11 25 4
gpt4 key购买 nike

我的要求是,我在我的项目中写了很多 $.post 方法。我想检查每个请求中的 session 并根据 session 值,我想处理我的页面。但我不想修改 session 的所有方法($.post),所以我想检查“ajaxStart 或 ajaxSend”中的 session 并取决于我想中止主 AJAX 调用的响应。

我已经用我的一点知识尝试了。下面的示例代码不起作用,因为$.post 是异步的。谁能帮我中止 AJAX 请求在 ajaxStart 或 ajaxSend 状态?

var pp;
link=function(id){
var url="http://localhost/jqueryui/test.php";
pp=$.post(url,{"id":id},function(data){
$("#div"+id).html(data);
});
}
$(function(){
$("#loading").ajaxStart(function(){
alert("Hi start");
$(this).show();
var url="http://localhost/jqueryui/test.php";
$.post(url,{"id":99},function(data){//checking the session
if(data == "close")
pp.abort();
});
});
});

最佳答案

您可以在回调中使用第二个参数“jqXHR”中止请求:

$( document ).ajaxSend( function( event, jqXHR, ajaxOptions )
{
jqXHR.abort(); // aborts the ajax request
} );

关于javascript - 如何在 ajaxStart 或 ajaxSend 中中止 AJAX 请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5538880/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com