我不知道如何找到这组数组的交集:
[
[
{"name":"product1","light":"1"},
{"name":"product2","light":"2"},
{"name":"product5","light":"5"},
{"name":"product4","light":"4"}
],
[
{"name":"product2","light":"2"},
{"name":"product3","light":"3"},
{"name":"product4","light":"4"}
],[...more arrays with objects]
]
这只是样本数据,我有很多变化但具有这种结构的真实数据集。我希望返回的交集看起来像这样(相交对象的单个数组):
[
{"name":"product2","light":"2"},
{"name":"product4","light":"4"},
]
我与 LoDashjs 和 Underscorejs 一起尝试了这个:
_.intersectionObjects = _.intersect = function(array) {
var slice = Array.prototype.slice; // added this line as a utility
var rest = slice.call(arguments, 1);
return _.filter(_.uniq(array), function(item) {
return _.every(rest, function(other) {
//return _.indexOf(other, item) >= 0;
return _.any(other, function(element) { return _.isEqual(element, item); });
});
});
};
我需要这个,因为我正在尝试使用 knockoutjs 创建一个标签系统。我有一个分类标签按钮的布局,在点击时写入“过滤器”可观察数组,剩下的唯一事情就是找到包含在这个可观察数组中的过滤产品的交集。
请帮帮我,我已经连续两天尝试解决这个问题,但缺乏javascript知识来解决这个问题。提前致谢!