我的对象:
"hockey": {
stats: {
skaters: {
regular: [
{name: "stat1", key: "statkey1"}
{name: "stat2", key: "statkey2"}
{name: "stat3", key: "statkey3"}
]
},
goalies: {
regular: [
{name: "stat1", key: "statkey4"}
{name: "stat2", key: "statkey5"}
{name: "stat3", key: "statkey6"}
]
}
}
}
我的代码:
var stats = [];
var key = "";
for (position in sport.stats) {
for (stat_group in position) {
for (stat in stat_group) {
key = stat.key;
stats[key] = true;
}
}
}
我正在尝试使用上面的代码从位于key
内的每个对象中获取属性sport.stats.position.stat_group
。每项运动都有不同数量的位置和统计组,因此循环三重奏。我没有得到任何控制台错误,它根本就没有抓取密钥而且迭代器变量没有评估对象而是整数。
以下是我想要生成的stats
对象:
{
"statkey1": true,
"statkey2": true,
"statkey3": true,
...
}
希望你们能帮忙!谢谢!
答案 0 :(得分:1)
对于...在javascript中为您提供对象的键,而不是值。
根据你的逻辑,这就是你的意思:
var stats = {};
var key = "";
for (position in sport.stats) {
for (stat_group in sport.stats[position]) {
for (stat in sport.stats[position][stat_group]) {
key = sport.stats[position][stat_group][stat].key;
stats[key] = true;
}
}
}
答案 1 :(得分:0)
JS for...in
循环遍历键,而不是值。如果要完全迭代对象,可以这样做:
for (key in sports.stats) {
var position = sports.stats[key];
for (group_key in position) {
var stat_group = position[group_key];
for (stat_key in stat_group) {
stat_group[stat_key] = true;
}
}
}