我有一些 JSON 显示在下图中。0
在 items 下 有一个对象。
我想获取项目内的属性。如何使用 jQuery 或 Javascript 访问它?
这是我到目前为止所拥有的:
jQuery.getJSON('http://localhost/magento/js/primitives/js/SpaceTreeRegion.json',
function(jsonData) {
jQuery.each(jsonData, function(currentRegionNode, jsonData) {
alert(jsonData.items.product_name);
});
});
此代码给出错误:jsonData.items.value is undefined
JSON是这样的:
[
{
"category_id": "Clothes",
"Items": [
{
"product_id": 1,
"price": 50,
"product_name": "Shirts"
},
{
"product_id": 2,
"price": 60,
"product_name": "T-Shirt"
}
]
}
]
我想访问product_id
,price
和对象中product_name
的每个items
。