lodash去重数组中相同的对象

_.unionBy([arrays], [iteratee=_.identity])
参数
[arrays] (...Array): 要检查的数组。
[iteratee=_.identity] (Array|Function|Object|string): 迭代函数,调用每个元素
返回
(Array): 返回一个新的联合数组。
_.unionBy([2.1], [1.2, 2.3], Math.floor);
// => [2.1, 1.2]
 
// The `_.property` iteratee shorthand.
_.unionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');
// => [{ 'x': 1 }, { 'x': 2 }]

上一篇:使用lodash把数组对象中相同的字段的值合并


下一篇:vue3 函数统一调用 如jquery,lodash,moment,echarts