使用 firebug 打印我看到的 json 时出现问题

发布于 2024-11-01 20:57:41 字数 351 浏览 0 评论 0原文

您好,我看到我的 json 从 google 返回,状态代码为 200 和响应,但我无法使用我提供的回调中返回的 json 数据。下面是代码。

$.getJSON("http://maps.googleapis.com/maps/api/directions/xml?origin=ajax& 
destination=toronto&region=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 技术交流群。

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

发布评论

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

评论(1

萌面超妹 2024-11-08 20:57:41

尝试将您的网址中的 callback 替换为 jsoncallback

更新:为了回复您的评论,请尝试替换网址中的 xml以及 json 。您正在使用的 URL 似乎正在返回 XML。

Try replacing callback with jsoncallback in your URL

UPDATE: In response to your comment, try replacing xml in the URL with json as well. The URL you're using seems to be returning XML.

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