发布于 2023-09-13 01:42:43 浏览 189 次
$.get(url)
.done(function(response) {
// 处理成功的响应
})
.fail(function(jqXHR, textStatus, errorThrown) {
// 处理请求失败 console.log("请求失败:" + textStatus + ", " + errorThrown);
});
3、
使用.catch()方法(需要jQuery版本3.0或更高):$.get(url)
.done(function(response) {
// 处理成功的响应
})
.catch(function(jqXHR, textStatus, errorThrown) {
// 处理请求失败 console.log("请求失败:" + textStatus + ", " + errorThrown);
});
4、
在这两种方法中,您可以根据实际需求对失败的情况进行处理。参数jqXHR是一个XMLHttpRequest对象,textStatus是错误的描述,errorThrown是可选的错误信息。
5、
请确保您已经包含了jQuery库,并将上述代码嵌入到合适的位置,以便在请求失败时执行相应的代码块。