使用jquery getjson方法的问题

发布于 2024-11-05 06:01:20 字数 382 浏览 1 评论 0原文

我正在尝试在 jquery 方法中使用 json 输出。

$(function() {
    $.getJSON("/items/list/", function(json) {
        var source = json;
        alert(source.os[0]);
    });
});

它不起作用。但是当我直接转到 url(/items/list/) 时,我看到了 json 输出。 它看起来像这样..

{"os":["Windows","Chrome","Mac OS X"], "languages":["php", "Java"]}

我感谢任何帮助。

谢谢。

I am trying to use json output in jquery method.

$(function() {
    $.getJSON("/items/list/", function(json) {
        var source = json;
        alert(source.os[0]);
    });
});

It does not work. But when I directly goto the url(/items/list/), I see the json output.
It looks something like this..

{"os":["Windows","Chrome","Mac OS X"], "languages":["php", "Java"]}

I appreciate any help.

Thanks.

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

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

发布评论

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

评论(2

南城旧梦 2024-11-12 06:01:20

也许在输出之前未在标头中设置 json 的 mime 类型:

尝试:

$(function() {
    $.getJSON("/items/list/", function(json) {
        var source = $.parseJSON(json);
        alert(source.os[0]);
    });
});

Perhaps mime type for json is not set in header before outputting:

Try:

$(function() {
    $.getJSON("/items/list/", function(json) {
        var source = $.parseJSON(json);
        alert(source.os[0]);
    });
});
不忘初心 2024-11-12 06:01:20

如果您知道 Firefox Firebug 插件可能会对您有所帮助。

转到脚本选项卡,只需在第 4 行保留一个断点,即 var source = json;并查看 firebug 右侧的 source 值。

如果上面的方法没有帮助,你可以尝试这个 jQuery.parseJSON( json ) ,它转换 JSON 字符串并返回 JavaScript 对象。

If you are aware of Firefox Firebug addon that might help you .

Goto the script tab, just keep a breakpoint in the 4th line that is var source = json; and have a look at the value of source in the right side of the firebug.

If the above doesn't help, you can try this jQuery.parseJSON( json ) which converts JSON string and returns JavaScript object.

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