gpt4 book ai didi

javascript - 处理 jquery ajax 错误

转载 作者:行者123 更新时间:2023-11-30 06:34:40 24 4
gpt4 key购买 nike

在我的 MVC 布局页面中,我有以下内容:

$("body").ajaxError(
function (e, request) {
if (request.status == 403 || request.status == 500) {
window.location = '@Url.Action("LogOn", "Account", new {area = "", msg = "forbidden", returnUrl = HttpContext.Current.Request.RawUrl})' + window.location.hash;
return;
}
window.location = '@Url.Action("Index", "Error")';
}
);

在另一个页面上,我正在执行这样的 ajax 调用:

...
$.when(refreshActionLinks(row, machineId, packageId)).done(function(a1) {
row.find("span").text(opStatus).removeClass("pending");
progressbar.progressbar("destroy");
$(row).flash(bg[1], 1000);
});
...

javascript 函数:

function refreshActionLinks($row, machineId, packageId) {
try {
var json = JSON.stringify({ packageId: packageId, machineId: machineId, tabType: $("#TabType").val() });
console.log("refreshActionLinks => " + json);
$row.find("td.options div.actionLinks").html("<img src='@Url.Content("~/Content/images/ajax-load2.gif")' />"); // pending
return $.ajax({
url: "@Url.Action("GetActionLinks", "Packages")",
data: json,
timeout: 50000,
contentType: 'application/json',
type: 'POST',
success: function (data) {
if ($row.length) {
$row.find("td.options div.actionLinks").html(data);
}
},
error: function(jqXHR, textStatus, errorThrown) {
console.log(textStatus, errorThrown);
}
});
} catch(e) {
// hide icons
$row.find("a.action").remove();
}
}

问题是,当 refreshAction 函数正在执行时,单击菜单链接会导致 ajax 调用出错 - 在本例中这是正确的。但它确实带我到/Index/Error 页面,这是不正确的。我希望“$("body").ajaxError”能够处理网站上的所有 ajax 错误,除了我调用 refreshActionLinks 的页面。注意,我的 ajax 调用周围已经有 try/catch。为什么那行不通?

谢谢

最佳答案

想通了:

ajax 有一个设置:

global: false

现在我的函数看起来像这样:

function refreshActionLinks($row, machineId, packageId) {
try {
var json = JSON.stringify({ packageId: packageId, machineId: machineId, tabType: $("#TabType").val() });
console.log("refreshActionLinks => " + json);
$row.find("td.options div.actionLinks").html("<img src='@Url.Content("~/Content/images/ajax-load2.gif")' />"); // pending
return $.ajax({
url: "@Url.Action("GetActionLinks", "Packages")",
global: false, // disable error pages on failed ajax calls
data: json,
timeout: 50000,
contentType: 'application/json',
type: 'POST',
success: function (data) {
if ($row.length) {
$row.find("td.options div.actionLinks").html(data);
}
}
});
} catch(e) {
// hide icons
$row.find("a.action").remove();
}
}

关于javascript - 处理 jquery ajax 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15379631/

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