2016-12-05 42 views
-1

JSONオブジェクト内の各エントリの一意のIDを追加します。は、私は次のようにJSONオブジェクトを持っている

enter image description here

私は一意のIDを追加するための属性titleを持つ各エントリのために好きなので、私のJSONう

enter image description here

をし、別のバージョンでは、私は、各エントリの一意のIDを追加したいので、次のようになります:オブジェクトは、次のようになります

enter image description here

どうすればいいですか?

編集:

これは私のJSONオブジェクトです:https://api.myjson.com/bins/59prd

+0

[ 'のために... in'](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for使用.. .in)を使用してオブジェクトをループし、識別子を追加します。 – LuudJacobs

+3

画像としてではなく、コード/オブジェクトをテキストとして追加してください。 –

+0

@NinaScholz、私の編集を確認してください –

答えて

1

あなたがオブジェクトをループにfor...inを使用して一意の識別子を追加することができます。

var iterator = 0; // this is going to be your identifier 

function addIdentifier(target){ 
    target.id = iterator; 
    iterator++; 
} 

function loop(obj){ 

    for(var i in obj){ 

    var c = obj[i];   

    if(typeof c === 'object'){ 

     if(c.length === undefined){ 

     //c is not an array 
     addIdentifier(c); 

     } 

     loop(c); 

    } 

    } 

} 

loop(json); // json is your input object 
+0

私は、再帰を使用し、再利用可能なメソッドに分割されることで、よりクリーンなソリューションをアップ投票しています。 –

0

あなたは、配列をiterateingのコールバックのため閉鎖addIdを使用して、ネストされた配列のためのインナーコールバックiterを使用することができます。

addIdとコールすると、先頭にインデックスを指定できます。

function addId(id) { 
 
    return function iter(o) { 
 
     if ('title' in o) { 
 
      o.id = id++; 
 
     } 
 
     Object.keys(o).forEach(function (k) { 
 
      Array.isArray(o[k]) && o[k].forEach(iter); 
 
     }); 
 
    }; 
 
} 
 

 
var data = [{ "Arts": [{ "Performing arts": [{ "Music": [{ "title": "Accompanying" }, { "title": "Chamber music" }, { "title": "Church music" }, { "Conducting": [{ "title": "Choral conducting" }, { "title": "Orchestral conducting" }, { "title": "Wind ensemble conducting" }] }, { "title": "Early music" }, { "title": "Jazz studies" }, { "title": "Musical composition" }, { "title": "Music education" }, { "title": "Music history" }, { "Musicology": [{ "title": "Historical musicology" }, { "title": "Systematic musicology" }] }, { "title": "Ethnomusicology" }, { "title": "Music theory" }, { "title": "Orchestral studies" }, { "Organology": [{ "title": "Organ and historical keyboards" }, { "title": "Piano" }, { "title": "Strings, harp, oud, and guitar" }, { "title": "Singing" }, { "title": "Strings, harp, oud, and guitar" }] }, { "title": "Recording" }] }, { "Dance": [{ "title": "Choreography" }, { "title": "Dance notation" }, { "title": "Ethnochoreology" }, { "title": "History of dance" }] }, { "Television": [{ "title": "Television studies" }] }, { "Theatre": [{ "title": "Acting" }, { "title": "Directing" }, { "title": "Dramaturgy" }, { "title": "History" }, { "title": "Musical theatre" }, { "title": "Playwrighting" }, { "title": "Puppetry" }] }] }] }]; 
 

 
data.forEach(addId(1)) 
 
console.log(data);
.as-console-wrapper { max-height: 100% !important; top: 0; }

関連する問題