gpt4 book ai didi

jquery - AJAX - 成功和错误时获取响应正文

转载 作者:行者123 更新时间:2023-12-03 22:01:13 24 4
gpt4 key购买 nike

对于这个愚蠢的问题我深表歉意,但我需要你的帮助。我需要获取有关 AJAX 内部响应的信息。

$.ajax({
type: "POST",
url: '/register',
data : registerRequestJSON,
contentType:"application/json",
success: function(data){
$("#register_area").text();// need to show success
},
error: function(err) {
$("#register_area").text("@text"); // @text = response error, it is will be errors: 324, 500, 404 or anythings else
}
});

如何使用响应正文? ( documentation Jquary.Ajax 目前无法工作)

最佳答案

错误处理程序的第一个参数是jqxhr,它具有属性responseText,它将提供响应正文。

$.ajax({
type: "POST",
url: '/register',
data : registerRequestJSON,
contentType:"application/json",
success: function(data){
$("#register_area").text();// need to show success
},
error: function(jqxhr) {
$("#register_area").text(jqxhr.responseText); // @text = response error, it is will be errors: 324, 500, 404 or anythings else
}
});

关于jquery - AJAX - 成功和错误时获取响应正文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15517283/

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