使用 getJSON 未显示 JSON 数据

发布于 2024-11-03 13:03:04 字数 291 浏览 1 评论 0原文

$('document').ready(function() 
    { 
        $.getJSON('news.php', parseInfo);
});

function parseInfo(data)
{
    alert(data.news);//undefined
    $('#info').html(data.news);
}

我的 PHP 输出(news.php)是 [{"id":"20110428","news":"2011 年 4 月 28 日"}]

$('document').ready(function() 
    { 
        $.getJSON('news.php', parseInfo);
});

function parseInfo(data)
{
    alert(data.news);//undefined
    $('#info').html(data.news);
}

My PHP output(news.php) is [{"id":"20110428","news":"april 28 2011"}]

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

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

发布评论

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

评论(3

两个我 2024-11-10 13:03:04

您的对象被包装在一个数组中。

您需要 data[0].news

或者从 JSON 输出中删除外部方括号。

Your object is wrapped inside an array.

You need data[0].news

Alternatively remove the outer square brackets from your JSON output.

十六岁半 2024-11-10 13:03:04

看起来这是一个数组,因此您可能想要执行以下操作:

alert(data[0].news);

It looks like that's an array so you probably want to do the following:

alert(data[0].news);
盗琴音 2024-11-10 13:03:04

您的输出是一个包含 JSON 元素的数组。删除 [] 或指向(这里猜测)data[0].news

Your output is an array with a JSON element. either remove the [] or point to (guessing here) data[0].news

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