gpt4 book ai didi

jQuery 默认的 ajax statusCode

转载 作者:行者123 更新时间:2023-12-03 22:20:40 25 4
gpt4 key购买 nike

据我了解,使用 ajax 处理错误结果的一种可能性如下:

$.ajax({
url: someUrl,
type: 'POST',
success: function(data) {},
error: function(jqXHR, exception) {
if (jqXHR.status === 0) {
alert('Not connect.\n Verify Network.');
} else if (jqXHR.status == 404) {
alert('Requested page not found. [404]');
} else if (jqXHR.status == 500) {
alert('Internal Server Error [500].');
} else if (exception === 'parsererror') {
alert('Requested JSON parse failed.');
} else if (exception === 'timeout') {
alert('Time out error.');
} else if (exception === 'abort') {
alert('Ajax request aborted.');
} else {
alert('Uncaught Error.\n' + jqXHR.responseText);
}
}
});

或者使用statusCode以使其更具可读性:

$.ajax({
url: someUrl,
type: 'POST',
statusCode: {
200: function(data) {
:
:
},
401: function() {
:
:
},
:
:

我的问题是:
是否可以使用 statusCode 并为其设置默认失败?

最佳答案

不在 statusCode 参数中。但那是因为如果您想捕获所有内容,则需要更好(且更精简)的方法:

complete: function(jqXHR, textStatus) {
switch (jqXHR.status) {
case 200:
alert("200 received! yay!");
break;
case 404:
alert("404 received! boo!");
break;
default:
alert("I don't know what I just got but it ain't good!");
}
}

关于jQuery 默认的 ajax statusCode,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10815132/

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