gpt4 book ai didi

jquery - 如何处理不返回 JSON 的 JSON 请求?

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

在好的情况下,我的 JSON 端点将返回正确的 JSON 响应:{status: "success"}。但是,如果我的网络服务器 500 错误,则 500 响应正文是 HTML,如果 jQuery 尝试使用 $.parseJSON 解析它,则会导致 SyntaxError。

This question建议仅从请求中删除 dataType 参数。我不想这样做,有没有办法尝试/捕获非 JSON 响应引发的 SyntaxError?

最佳答案

From jQuery API

Important: As of jQuery 1.4, if the JSON file contains a syntax error, 
the request will usually fail silently.

您可以通过错误回调来处理它。

$.ajax({
url: "MYURL",
dataType: 'json',
success: function(data) {

},
error: function(e) {
if(e.status == 500)
alert("500 Internal Server Error");
}
});

关于jquery - 如何处理不返回 JSON 的 JSON 请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11442784/

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