Lodash - unionWith 方法



语法

_.unionWith([arrays], [comparator])

此方法类似于 _.union,但它接受 comparator,该 comparator 用于比较数组元素。结果值从发生该值的第一列中选取。对 comparator 调用时使用两个参数:(arrVal, othVal)。

参数

  • [数组] (...Array) − 将检查的数组。

  • [比较器] (Function) − 按元素调用的比较器。

输出

  • (数组) − 返回组合值的新数组。

示例

var _ = require('lodash');
var objects = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];
var others = [{ 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }];
 
var result = _.unionWith(objects, others, _.isEqual);
console.log(result);

将以上程序保存在 **tester.js** 中。运行以下命令以执行此程序。

命令

\>node tester.js

输出

[ { x: 1, y: 1 }, { x: 1, y: 2 }, { x: 2, y: 1 } ]
lodash_array.htm
广告