JSONArray 与 jquery
我有包含 JSONObjects 的 JSONArray
[ { 'title': abc, 'details':xyz,}, {'title': abc2,'details':xyz2}]
如何使用 jquery 解析它?
I have JSONArray Containing JSONObjects
[ { 'title': abc, 'details':xyz,}, {'title': abc2,'details':xyz2}]
How to parse it using jquery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
parseJSON 会将您的 Json 字符串转换为 javascript 对象。代码类似于
然后访问您使用代码类似的变量
parseJSON will convert your Json string into a javascript object. The code is something like
Then to access the variables you use code like
我认为如果你的数组是一个字符串,你需要使用 parseJSON 。
http://api.jquery.com/jQuery.parseJSON/
I think you need to use parseJSON if your array is a string.
http://api.jquery.com/jQuery.parseJSON/