当请求未作为 JSON 返回时,jQuery getJSON 问题

发布于 2024-09-06 05:30:52 字数 249 浏览 2 评论 0原文

我有以下代码,

jQuery.getJSON(encodeURI(strUrl), {address:address,state:state, zip:zip},function(data){
    alert('HELLO World!');
});

如果由于某种原因 strUrl 返回一个不是 JSON 格式的字符串,则回调函数永远不会被调用。有没有办法知道响应是否为 json 格式或者帖子中是否出现问题?

I have the following code

jQuery.getJSON(encodeURI(strUrl), {address:address,state:state, zip:zip},function(data){
    alert('HELLO World!');
});

If for some reason the strUrl returns a string that's not in JSON format the callback function never gets called. Is there a way to know if the response is in json format or if something went wrong in the post?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜空下最亮的亮点 2024-09-13 05:30:52

jQuery.getJSON 不允许您定义错​​误回调函数。

您需要使用jQuery.ajax,将dataType设置为json,并将其余配置变量设置为getJSON默认定义。

jQuery.getJSON doesn't allow you to define an error callback function.

You'll need to use jQuery.ajax instead, setting the dataType to json and set the remaining configuration variables as getJSON defines by default.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文