JSONオブジェクト内の各エントリの一意のIDを追加します。は、私は次のようにJSONオブジェクトを持っている
私は一意のIDを追加するための属性title
を持つ各エントリのために好きなので、私のJSONう
をし、別のバージョンでは、私は、各エントリの一意のIDを追加したいので、次のようになります:オブジェクトは、次のようになります
どうすればいいですか?
編集:
これは私のJSONオブジェクトです:https://api.myjson.com/bins/59prd
JSONオブジェクト内の各エントリの一意のIDを追加します。は、私は次のようにJSONオブジェクトを持っている
私は一意のIDを追加するための属性title
を持つ各エントリのために好きなので、私のJSONう
をし、別のバージョンでは、私は、各エントリの一意のIDを追加したいので、次のようになります:オブジェクトは、次のようになります
どうすればいいですか?
これは私のJSONオブジェクトです:https://api.myjson.com/bins/59prd
あなたがオブジェクトをループに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
私は、再帰を使用し、再利用可能なメソッドに分割されることで、よりクリーンなソリューションをアップ投票しています。 –
あなたは、配列を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; }
[ 'のために... in'](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for使用.. .in)を使用してオブジェクトをループし、識別子を追加します。 – LuudJacobs
画像としてではなく、コード/オブジェクトをテキストとして追加してください。 –
@NinaScholz、私の編集を確認してください –