gpt4 book ai didi

jQuery:干净地处理来自 ajax 的错误状态代码

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

我有一个非常简单的ajax请求:

$.get(url, data)
.done(function () { })
.fail(function () { })

如果 url 出现错误,它将返回一个状态代码,例如“500”。显然,jQuery 此时会考虑其对 jqxhr 对象的 promise ,因为它将执行 .done 而不是 .fail。我的问题有两个:

默认情况下,什么时候会针对ajax触发.fail,有什么方法可以更改此默认值吗?

其次,对错误请求进行特殊处理的唯一方法似乎是:

.done(function (msg, tm, jqxhr) {
if (jqxhr.status < 200 || jqxhr.status >= 300) performFailure();
});

是否有更好的方法来查找和处理被视为“不好”的响应?

最佳答案

来自 jQuery .get()文档:

If a request with jQuery.get() returns an error code, it will fail silently unless the script has also called the global .ajaxError() method. Alternatively, as of jQuery 1.5, the .error() method of the jqXHR object returned by jQuery.get() is also available for error handling.

(强调我的)

我没有做太多错误处理,但听起来您可能需要调用 ajaxError 来消除错误条件。

关于jQuery:干净地处理来自 ajax 的错误状态代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10048346/

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