最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Remove duplicates from object array - Underscore - Stack Overflow

programmeradmin2浏览0评论

Trying to get _.uniq() working on the following structure:

[
    {'x' : 1, 'y': 2},
    {'x' : 1, 'y': 2},
    {'x' : 2, 'y': 3},
    {'x' : 2, 'y': 4},
    {'x' : 3, 'y': 4}
]

where the result should be:

[
    {'x' : 1, 'y': 2},
    {'x' : 2, 'y': 3},
    {'x' : 2, 'y': 4},
    {'x' : 3, 'y': 4}
]

ie duplicate items removed. I'd like to avoid stringify, because I then just have to parse each back out to a JSON object.

Any help would be appreciated.

EDIT: tring Matt's solution below, I'm missing something I think - this doesn't work. If I log the values for a and b, I see

_.uniq($scope.validNotes, function (a, b) {
    console.log(a, b);
    return a.x === b.x && a.y === b.y;
});


Object {x: 2, y: 3} 0 
Object {x: 1, y: 0} 1 
Object {x: 2, y: 3} 2 
Object {x: 3, y: 2} 3 
Object {x: 4, y: 2} 4
Object {x: 5, y: 1} 5

Which obviously means I'll never find any dupes

Trying to get _.uniq() working on the following structure:

[
    {'x' : 1, 'y': 2},
    {'x' : 1, 'y': 2},
    {'x' : 2, 'y': 3},
    {'x' : 2, 'y': 4},
    {'x' : 3, 'y': 4}
]

where the result should be:

[
    {'x' : 1, 'y': 2},
    {'x' : 2, 'y': 3},
    {'x' : 2, 'y': 4},
    {'x' : 3, 'y': 4}
]

ie duplicate items removed. I'd like to avoid stringify, because I then just have to parse each back out to a JSON object.

Any help would be appreciated.

EDIT: tring Matt's solution below, I'm missing something I think - this doesn't work. If I log the values for a and b, I see

_.uniq($scope.validNotes, function (a, b) {
    console.log(a, b);
    return a.x === b.x && a.y === b.y;
});


Object {x: 2, y: 3} 0 
Object {x: 1, y: 0} 1 
Object {x: 2, y: 3} 2 
Object {x: 3, y: 2} 3 
Object {x: 4, y: 2} 4
Object {x: 5, y: 1} 5

Which obviously means I'll never find any dupes

Share Improve this question edited Nov 11, 2013 at 12:27 Nathan asked Nov 11, 2013 at 12:03 NathanNathan 9791 gold badge21 silver badges38 bronze badges 2
  • possible duplicate of Javascript - Quickly remove duplicates in object array – Vicky Gonsalves Commented Nov 11, 2013 at 12:08
  • possible duplicate of Removing duplicate objects with Underscore for Javascript – Matt Commented Nov 11, 2013 at 12:10
Add a ment  | 

2 Answers 2

Reset to default 9

Because two objects are not == or ===, just because they have the same keys, you will need to use the [iterator] argument of the uniq() function;

_.uniq(myArray, function (item) {
    return item.x + item.y;
});

Note you'll need to return a unique string bination; consider the case of { x: 11, y: 1 } and { x: 1, y: 11 }; my code will resolve both to 111, and treat them as the same.

Something like:

_.uniq(myArray, function (item) {
    return 'x:' + item.x + 'y:' + item.y;
});

... would be more resilient, but it depends on the values of your data, of course.

If you have abstract data structure in your JSON, it will be better to pare array elements one bt one like strings, using stringify. Because you have new object in every array element, every literal object notation ie {} creates new object in javascript language and it's doesn't metter has it the same properties or not.

But, if you have stucture like x,y use Matt answer

发布评论

评论列表(0)

  1. 暂无评论