gpt4 book ai didi

jquery - 从JQuery错误中获取responseText错误值?

转载 作者:行者123 更新时间:2023-12-03 07:56:22 25 4
gpt4 key购买 nike

在我的ajax .error函数中,我试图从例如从我得到的API发送回的responseText中获取值。

{"error":"Wrong Crendtials","error_description":"Provided username and password is incorrect"}
在我的JavaScript中,它识别出错误,但是我无法让它进入要根据错误响应显示消息的单个项目吗?
).error(function (xhr, status, err) {
var errorData = xhr.responseText;
if (errorData != null) {
alert("has errors");
alert("error - " + errorData.error + " - desc " + errorData.error_description);
}
});
我确定这确实是最基本的东西,但我一直在努力寻找一个可以打破值(value)观的答案?
谢谢

最佳答案

非常感谢Swati。解决方法如下:

var jsonResponse = jQuery.parseJSON(xhr.responseText);
alert("Error: " + jsonResponse.error + " Description: " + jsonResponse.error_description);

关于jquery - 从JQuery错误中获取responseText错误值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63798539/

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