I have an array of ID's and organizations like so:
var ids = ['1','2', '3'];
var orgs =
[
{ name: "Org 1", id: 1 },
{ name: "Org 2", id: 2 },
{ name: "Org 3", id: 2 }
]
I want to loop through these to output something like this:
{
1: [
{name: "Org 1", id: 1}
],
2: [
{name: "Org 2", id: 2},
{name: "Org 3", id: 2}
]
}
I tried this without success:
var results = orgs.forEach(function (org) {
if (results[org.id]) {
results.push(org)
} else {
results[org.id] = [org]
};
});
I have an array of ID's and organizations like so:
var ids = ['1','2', '3'];
var orgs =
[
{ name: "Org 1", id: 1 },
{ name: "Org 2", id: 2 },
{ name: "Org 3", id: 2 }
]
I want to loop through these to output something like this:
{
1: [
{name: "Org 1", id: 1}
],
2: [
{name: "Org 2", id: 2},
{name: "Org 3", id: 2}
]
}
I tried this without success:
var results = orgs.forEach(function (org) {
if (results[org.id]) {
results.push(org)
} else {
results[org.id] = [org]
};
});
Share
Improve this question
edited Dec 3, 2014 at 21:13
Anthony
asked Dec 3, 2014 at 20:53
AnthonyAnthony
16k4 gold badges43 silver badges69 bronze badges
2
-
Your
results
is an invalid structure.{ [ ] }
is invalid, you can't have an object without keys. – gen_Eric Commented Dec 3, 2014 at 20:56 - Thanks @RocketHazmat - I think i've updated accordingly. – Anthony Commented Dec 3, 2014 at 21:09
2 Answers
Reset to default 10If you don't want to use a library like Underscore, Ramda, or Lo-Dash, then it's simple enough to write this using reduce
:
var results = orgs.reduce(function(results, org) {
(results[org.id] = results[org.id] || []).push(org);
return results;
}, {})
you should use underscore and just return your id
http://underscorejs/#groupBy
_.groupBy([1.3, 2.1, 2.4], function(num){ return Math.floor(num); });
// => {1: [1.3], 2: [2.1, 2.4]}
you might also want to take a look at lo-dash
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743636541a4482245.html
评论列表(0条)