gpt4 book ai didi

javascript - 使用 lodash 过滤另一个数组的元素

转载 作者:行者123 更新时间:2023-11-28 00:38:03 25 4
gpt4 key购买 nike

假设我有以下两个数组

[{
name: "one"
},
{
name: "two" //need an array containing this
}
];

[{
name: "one"
}];

如何使用 lodash 过滤第一个数组以仅包含第二个数组中未列出的元素?

最佳答案

试试这个

var second = [{name: "one"}, {name: "two"}];
var first = [{name: "one"}];

first = _.pluck(first, 'name'); // get all names - ['one']
second = _.filter(second, function (el) {
return _.indexOf(first, el.name) === -1; // search every name in first array
});

Example

关于javascript - 使用 lodash 过滤另一个数组的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28266912/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com