如果是你想做的联合,可以用下划线的方式来做:
// collectionUnion(*arrays, iteratee)
function collectionUnion() {
var args = Array.prototype.slice.call(arguments);
var it = args.pop();
return _.uniq(_.flatten(args, true), it);
}
它只是对原始函数的改进,在_.union(*arrays)
工作集合(对象数组)中添加了一个迭代对象。
这里如何使用它:
var result = collectionUnion(a, b, c, function (item) {
return item.id;
});
仅使用数组的原始函数如下所示:
_.union = function() {
return _.uniq(flatten(arguments, true, true));
};
还有一个完整的例子:
// collectionUnion(*arrays, iteratee)
function collectionUnion() {
var args = Array.prototype.slice.call(arguments);
var it = args.pop();
return _.uniq(_.flatten(args, true), it);
}
var a = [{id: 0}, {id: 1}, {id: 2}];
var b = [{id: 2}, {id: 3}];
var c = [{id: 0}, {id: 1}, {id: 2}];
var result = collectionUnion(a, b, c, function (item) {
return item.id;
});
console.log(result); // [ { id: 0 }, { id: 1 }, { id: 2 }, { id: 3 } ]
编辑:如果您想了解更多详细信息,我写了一篇博文:http: //geekcoder.org/union-of-two-collections-using-underscorejs/