我正在从Facebook图表api访问facebook发布这样的JSON数据:
"data": [
{
"name": "Webdesigner Depot",
"status_type": "shared_story",
"story_tags": [
{
"id": "145830968342431",
"name": "MyPage",
"type": "page",
"offset": 0,
"length": 12
},
{
"id": "185486171450",
"name": "Webdesigner Depot",
"type": "page",
"offset": 20,
"length": 17
}
],
"id": "1458309134468342_1696820887283831"
}
]
我可以输出这样的数据:
$.each( posts.data, function( i, data ) {
console.log(data.status_type);
});
但是当偏移未知时如何输出story_tags数据呢?
例如,如何输出data.story_tags.name和data.story_tags.id
通过story_tags循环似乎不起作用。