gpt4 book ai didi

javascript - ajax请求中的404和401错误

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

我正在使用 jQuery 的 ajax 方法来提交这样的 ajax 请求:

$.ajax({
type: "PUT",
url: someURL,
contentType: "application/json",
data: JSON.stringify(data),
dataType: "json"
})

如何为 http 状态代码 401 和 404 添加错误处理程序?

最佳答案

来自the jQuery documentation ,您可以在调用 .ajax() 时将特定状态代码响应的处理程序作为选项实现:

$.ajax({
type: "PUT",
url: someURL,
contentType: "application/json",
data: JSON.stringify(data),
dataType: "json",
statusCode: {
404: function() {
// handle the 404 response
},
401: function() {
// handle the 401 response
}
}
})

关于javascript - ajax请求中的404和401错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19320870/

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