使用 firebug 打印我看到的 json 时出现问题
您好,我看到我的 json 从 google 返回,状态代码为 200 和响应,但我无法使用我提供的回调中返回的 json 数据。下面是代码。
$.getJSON("http://maps.googleapis.com/maps/api/directions/xml?origin=ajax&
destination=toronto®ion=ca&avoid=tolls&sensor=false&callback=?",function(json)
{
alert("Some Success"+json);
});
]
hi i see my json returned from google with a status code 200 and response but i am not able to use the json data returned in the callback i provided. below is the code.
$.getJSON("http://maps.googleapis.com/maps/api/directions/xml?origin=ajax&
destination=toronto®ion=ca&avoid=tolls&sensor=false&callback=?",function(json)
{
alert("Some Success"+json);
});
]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将您的网址中的
callback
替换为jsoncallback
更新:为了回复您的评论,请尝试替换网址中的
xml
以及json
。您正在使用的 URL 似乎正在返回 XML。Try replacing
callback
withjsoncallback
in your URLUPDATE: In response to your comment, try replacing
xml
in the URL withjson
as well. The URL you're using seems to be returning XML.