我正在设置我的代码并遇到问题.. 这段代码只是我想要做的一个例子。所以基本上 config.Te[i].ref 应该读取 Te 中的所有 ref .. 但它只读取第一行而不是 Te 中的所有行...
问候
for (var i in config.acc,config.Te,config.Hu,config.Ve)
console.log(config.Te[i].ref)
{}
当我将日志输出更改为 config.acc[i].ref 或其他时,它也仅读取该特定配置的第一行。
但是当我将其更改为 for (var i in config.acc) 时,它会读取所有引用...
所以我认为我的代码格式错误,我不知道如何修复它。错误必须是在分离配置。我只想 1 比 1 分别称呼它们。
"acc":
[
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 },
{"type":"PIR", "ref":0 }
],
相关分类