javascript – So durchlaufen Sie ein Objekt und geben die Zeichenfolge des Objekts selbst aus
为情所困
为情所困 2017-05-19 10:25:05
0
6
479
var a = {a:1,b:2}

var b = {a:2,b:3}

[a,b].forEach(key => {
    console.log(key)    
})

Vielleicht ist der Ausdruck nicht ganz klar. Bitte fügen Sie ein Bild hinzu

为情所困
为情所困

Antworte allen(6)
洪涛
[a, b].forEach(key => {
  console.log(JSON.stringify(key))
})
过去多啦不再A梦
var a = {a:1,b:2};
var b = {a:2,b:3};
[a,b].forEach(obj => {
    for (key in obj) {
        console.log(obj[key]);
        }
    })
我想大声告诉你
obj = {
    a: {},
    b: {}
}

for(key in obj) {
    console.log(key)
}

我还是不太懂你要的结果

刘奇
[a,b].forEach(obj => {
    for(key in obj) {
        console.log(key)
    }
})
黄舟
[a, b].forEach( (v) => console.log(v));
// { a: 1, b: 2 }
// { a: 2, b: 3 }

[a, b].forEach( (v) => {
  for(key in v) {
    console.log(key)
  }
});
// a
// b
// a
// b

[a, b].forEach( (v) => {
  var {a, b} = v;
  console.log(a, b);
});
// 1 2
// 2 3
Peter_Zhu

这样行了吧- -输出a:1 b:2 a:2 b:3

        [a, b].forEach(el => {
            for (let key in el) {
                console.log(`${key}:${el[key]}`)
            }
        });
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!