访问 json 数据时出现问题
我正在使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您的 JSON 语法正确,数据将由 jQuery 自动转换为原生对象,因此在
function (data) { ..... }
中,您将引用data.json 。书籍[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 todata.books[0]
:使用jquery的parseJSON api.. http://api.jquery.com/jQuery.parseJSON/
use the parseJSON api of jquery.. http://api.jquery.com/jQuery.parseJSON/