gpt4 book ai didi

javascript - 处理 $.ajax 请求中的其他状态码

转载 作者:数据小太阳 更新时间:2023-10-29 04:18:36 26 4
gpt4 key购买 nike

在下面的代码中,我正在处理状态代码 200 和 401。如果我想将控制直接交给一个处理除 200 和 401 之外的所有代码的函数,我该怎么办?

$.ajax({
type: "POST",
dataType: "json",
data:POSTData,
url: 'http://localhost/api/user/authenticate',
statusCode: {
200: function() {
alert("ok");
},
401: function() {
alert("Invalid Credentials");
}
}
});

最佳答案

尝试这样的事情:

$.ajax({
type: "POST",
dataType: "json",
data:POSTData,
url: 'http://localhost/api/user/authenticate',
complete: function(xhr, statusText){
switch(xhr.status){
case 200:
alert("ok");
case 401:
alert("invalid credentials");
....
etc
}
}
});

关于javascript - 处理 $.ajax 请求中的其他状态码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8923895/

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