arrays - Group by Object ID's in Javascript - Stack Overflow

I have an array of ID's and organizations like so:var ids = ['1','2', '3&

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
Add a ment  | 

2 Answers 2

Reset to default 10

If 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

相关推荐

  • arrays - Group by Object ID's in Javascript - Stack Overflow

    I have an array of ID's and organizations like so:var ids = ['1','2', '3&

    18小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信