JSON - data.items 未定义
我无法包装我的 data.items
因为它包含数组的数组,突然我觉得它丢失了。 data.items 未定义
。
我使用 JQuery 来完成 $.each
。
下面列出了我的 JSON:
{
"success": true,
"name": "factors",
"items": [
{
"name": "type de lieux",
"value": {
"appartement": "Appartement",
"maison individuelle": "Maison individuelle"
}
},
{
"name": "surface",
"value": {
"79": "< 80",
"81": "> 80"
}
}
]
}
我使用 jQuery 执行此操作,但返回了上述错误消息:
$.each(data['items'], function(i, item) {
alert('oki');
});
我应该做什么作为修改?
预先感谢您。
I can not wrap in my data.items
because it contains arrays of arrays, and suddenly I feel that it is lost.data.items is undefined
.
I use JQuery to complete with $.each
.
My JSON listed below:
{
"success": true,
"name": "factors",
"items": [
{
"name": "type de lieux",
"value": {
"appartement": "Appartement",
"maison individuelle": "Maison individuelle"
}
},
{
"name": "surface",
"value": {
"79": "< 80",
"81": "> 80"
}
}
]
}
I do this with jQuery, but I return the error message described above:
$.each(data['items'], function(i, item) {
alert('oki');
});
What should I do as an amendment?
Thanking you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想迭代使用 -
示例 - http://jsfiddle.net/rXETR/
If you want to iterate use -
Example - http://jsfiddle.net/rXETR/
更进一步:
此示例迭代对象数组“items”的嵌套“键值”对。
JSON 数据
处理数据
http://jsfiddle.net /rXETR/6/
Taking it one step further:
This example iterates through the nested 'key value' pairs of the object array 'items'.
JSON Data
Handling the data
http://jsfiddle.net/rXETR/6/