从配置问题读取的多个 FOR var 循环

我正在设置我的代码并遇到问题.. 这段代码只是我想要做的一个例子。所以基本上 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 }

            ],


尚方宝剑之说
浏览 121回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript