我有一个包含所有帖子的 json 我的博客,我想返回“标签”数组的所有值。因此,请参阅下面的 json 示例:
"posts":[
{
"id":"89319077059",
"title":"Post Title 01",
"tags":[
"Politcs",
"Science",
]
},
{
"id":"89318918989",
"title":"Post Title 02",
"tags":[
"Football",
"Soccer",
]
},
]
所以,我需要在循环中获取唯一的标签值,例如:
for (var i = 0; i < posts.length; i++) {
console.info("Here [i = 0] should be show the Politcs and Science and after [i = 1] show Football and Soccer");
}
我尝试创建另一个循环来搜索标签并使用标签 [1]、标签 [2] 等,但不起作用。
var tags = [];
for (var tag in posts[i].tags) {
tags.push(tag);
}
任何想法?