当请求未作为 JSON 返回时,jQuery getJSON 问题
我有以下代码,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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 thedataType
tojson
and set the remaining configuration variables as getJSON defines by default.