访问 json 数据时出现问题

发布于 2024-10-21 20:55:11 字数 413 浏览 2 评论 0原文

我正在使用jquery 1.5。我正在使用 getJSON 方法来获取 json 输出..

  $.getJSON('/products/list/', function(data) { ..... });      

json 的结构如下..

{"books":["title_of_books1","title_of_books2","title_of_books3"],
 "discs":["title_of_discs1","title_of_discs2"],
  etc....,
}

有没有办法使用 jquery 将其转换为数组。所以我可以像 books[0] 一样访问它,

我感谢任何帮助。

谢谢。

I am using jquery 1.5. I am using getJSON method to get the json output..

  $.getJSON('/products/list/', function(data) { ..... });      

The json is structured like..

{"books":["title_of_books1","title_of_books2","title_of_books3"],
 "discs":["title_of_discs1","title_of_discs2"],
  etc....,
}

Is there a way to convert this into an array using jquery. So I can access it like books[0]

I appreciate any help.

Thanks.

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

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

发布评论

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

评论(2

狼亦尘 2024-10-28 20:55:11

假设您的 JSON 语法正确,数据将由 jQuery 自动转换为原生对象,因此在 function (data) { ..... } 中,您将引用 data.json 。书籍[0]

$.getJSON('/products/list/', function(data) { 
    alert(data.books[0]);
});      

Assuming your JSON syntax is correct, the data would be automatically converted to a native object by jQuery, so inside function (data) { ..... }, you would refer to data.books[0]:

$.getJSON('/products/list/', function(data) { 
    alert(data.books[0]);
});      
终止放荡 2024-10-28 20:55:11

使用jquery的parseJSON api.. http://api.jquery.com/jQuery.parseJSON/

use the parseJSON api of jquery.. http://api.jquery.com/jQuery.parseJSON/

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