Lodash - differenceWith 方法



语法

_.differenceWith(array, [values], [comparator])

此方法类似于 _.difference,但它接受被用来比较数组元素与值比较器的。结果值的顺序和引用是由第一个数组来确定的。比较器会被调用两次参数:(arrVal, othVal)。

参数

  • array (Array) − 要检查的数组。

  • [values] (...Array) − 要排除的值。

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

输出

  • (Array) − 返回过滤值的新数组。

示例

var _ = require('lodash');
var objects = [{ 'x': 4, 'y' : 2 }, { 'x': 1 }];
var result = '';

result = _.differenceWith(objects, [{ 'y': 2, 'x': 4 }], _.isEqual);
console.log(result);

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

命令

\>node tester.js

输出

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