3

私はこのオブジェクトを持っています:

var sub = {
    0:  [""],
    21: ["Look, here, are three little stuff,","ready to sing for this crowd"],
    28: ["Listen up, 'cause here's our story","I'm gonna sing it very LOUUU..."],
    36: [""],
    45: ["VERY LOUUU..."],
    48: [""],
    61: ["When you're a younger stuff","and your stuff is very bare"],
    68: ["Feels like the sun will never come","when your stuff's not there"],
    74: ["So the three of us will fight the fight","there is nothing that we fear"],
    80: ["We'll have to figure out what we'll do next","till our stuff is here!"],
    87: ["We are the guys","on a quest to find out who we are"],
    94: ["And we will never stop the journey","not until we have our stuff"],
    101:[""],
    106:["(stuff...)"],
}
//I like stuff.

そして、次のように、すべての変数名を配列に取得したいと思います。

variables == [0, 21, 28, 36, 45, 48, 61, 68, 74, 80, 87, 94, 101, 106, 109];

このための組み込み関数はありますか、それとも JSON オブジェクト変数を反復することは可能ですか?

4

2 に答える 2

6

ほとんどのブラウザーでは、このメソッドが Object プロトタイプに組み込まれています。

使用できます

var variables = Object.keys(sub); //returns an array with all the object keys

それが役立つことを願っています!

于 2013-02-22T20:01:56.693 に答える
1
var variables = [];
for (var i in sub) {
 if (sub.hasOwnProperty(i)){
  variables.push(+i);
 }
}

これは手動の解決策です。このような問題には Underscore.js を使用することをお勧めします。_.keysUnderscore には良い方法があります。

于 2013-02-22T19:31:27.900 に答える