I'm looking to normalise some data returned from an API. Already using underscore within the project.
var res = [{
badge_no: 123,
id: 1,
name: 'bob'
}, {
badge_no: 456,
id: 2,
name: 'bill'
}, {
badge_no: 789,
id: 3,
name: 'ben'
},
// etc
];
I'm looking to create a data structure that looks like:
var normalisedRes = [{
1: {
badge_no: 123,
id: 1,
name: 'bob'
}
}, {
2: {
badge_no: 456,
id: 2,
name: 'bill'
}
}, {
3: {
badge_no: 789,
id: 3,
name: 'ben'
}
}];
It is important that I keep the id within the obj. I believe I can acplish this with reduce
but I'm struggling.
Thanks for your help!
EDIT: This question has now been answered.
From some of the advice on here, I have decided to normalise the data to return an obj which looks like:
{ '1': {data}, '2':{data}, '3':{data} }
To do this I used reduce, as I originally thought I should:
var normalised = res.reduce((acc, person) => {
acc[person.id] = person;
return acc;
}, {});
Thanks again for all the answers!
I'm looking to normalise some data returned from an API. Already using underscore within the project.
var res = [{
badge_no: 123,
id: 1,
name: 'bob'
}, {
badge_no: 456,
id: 2,
name: 'bill'
}, {
badge_no: 789,
id: 3,
name: 'ben'
},
// etc
];
I'm looking to create a data structure that looks like:
var normalisedRes = [{
1: {
badge_no: 123,
id: 1,
name: 'bob'
}
}, {
2: {
badge_no: 456,
id: 2,
name: 'bill'
}
}, {
3: {
badge_no: 789,
id: 3,
name: 'ben'
}
}];
It is important that I keep the id within the obj. I believe I can acplish this with reduce
but I'm struggling.
Thanks for your help!
EDIT: This question has now been answered.
From some of the advice on here, I have decided to normalise the data to return an obj which looks like:
{ '1': {data}, '2':{data}, '3':{data} }
To do this I used reduce, as I originally thought I should:
var normalised = res.reduce((acc, person) => {
acc[person.id] = person;
return acc;
}, {});
Thanks again for all the answers!
id
)? How is that a "better" or normalized version of what you started with? Why do you want that structure?
– gen_Eric
Commented
Jan 30, 2017 at 16:28
ID
s or indexes (+1)
?
– ibrahim mahrir
Commented
Jan 30, 2017 at 16:46
You could use Array#map
with an object and set the key with id
and return the object.
var array = [{ badge_no: 123, id: 1, name: 'bob' }, { badge_no: 456, id: 2, name: 'bill' }, { badge_no: 789, id: 3, name: 'ben' }],
result = array.map(function (a) {
var o = {};
o[a.id] = a;
return o;
});
console.log(result);
.as-console-wrapper { max-height: 100% !important; top: 0; }
With ES6, you could use a puted property.
var array = [{ badge_no: 123, id: 1, name: 'bob' }, { badge_no: 456, id: 2, name: 'bill' }, { badge_no: 789, id: 3, name: 'ben' }],
result = array.map(a => ({ [a.id]: a }));
console.log(result);
.as-console-wrapper { max-height: 100% !important; top: 0; }
You cant use integers as key in an object. So your example isnt possible. See this relatied issue: Javascript: Using integer as key in associative array?
You can do this with Array#map()
var res = [{badge_no:123, id:1, name:'bob'},{badge_no:456, id:2, name:'bill'},{badge_no:789, id:3, name:'ben'}];
var result = res.map(e => ({[e.id]: e}))
console.log(result)
If you want you can also use reduce()
but map()
should get the job done.
var res = [{badge_no:123, id:1, name:'bob'},{badge_no:456, id:2, name:'bill'},{badge_no:789, id:3, name:'ben'}];
var result = res.reduce((r, e) => (r.push({[e.id]: e}), r), [])
console.log(result)
Aren't these solutions counter intuitive thou, the point of using an HashTable over an array is that if you have to use Array.find((item)=>{...}) it has to go through each record to find the one you want, reduce will go through each item in the array, and map will return back a new array, ie: you will get an array with the objectKey:{...object}, the best thing to do will be to return an Hash from your backend, This is actually what firebase does for example
_.indexBy
does exactly what is required.