帮助 jQuery 抓取 json 数据

发布于 2024-11-07 00:38:22 字数 524 浏览 0 评论 0原文

我在这里遇到了一些麻烦,我的 json 数据输出如下:

{"date":[{"day_w":"Tuesday","day_n":"28","month":"Dec"}],"subscriptions":[{"subscribe":"example1"},{"subscribe":"example2"},{"subscribe":"example3"}]}

我正在使用 jQuery 代码:

$.getJSON("example.php",function(data){

$.each(data.subscriptions, function(i, item) {
    var subscribeData = "<li>"+ item.subscribe +"</li>";
    $('#list').append(subscribeData);
});

但我在获取日期数组时遇到问题。我不想使用 .each 因为只有一个数组保存日期。这有道理吗?有人可以帮忙吗?

I am having some trouble here, my json data is outputting as follows:

{"date":[{"day_w":"Tuesday","day_n":"28","month":"Dec"}],"subscriptions":[{"subscribe":"example1"},{"subscribe":"example2"},{"subscribe":"example3"}]}

I am using the jQuery code:

$.getJSON("example.php",function(data){

$.each(data.subscriptions, function(i, item) {
    var subscribeData = "<li>"+ item.subscribe +"</li>";
    $('#list').append(subscribeData);
});

but I am having an issue grabbing the date array. I don't want to have to use .each because there is only one array holding the date. Does this make sense? Can anyone please help?

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

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

发布评论

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

评论(3

终止放荡 2024-11-14 00:38:22

为什么 date 是一个数组?为什么不直接把对象放在那里呢?

{"date":{"day_w":"Tuesday","day_n":"28","month":"Dec"},"subscriptions":[...

如果这不是一个选项,您可以直接访问date[0]

doSomethingWith(data.date[0].day_w);

Why is date an array at all? Why not just have the object in there directly?

{"date":{"day_w":"Tuesday","day_n":"28","month":"Dec"},"subscriptions":[...

If that's not an option, you can just access date[0]:

doSomethingWith(data.date[0].day_w);
似狗非友 2024-11-14 00:38:22

您可以编写 data.date[0] 来获取数组中的第一个对象。

You can write data.date[0] to get the first object in the array.

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