Lodash - intersectionWith 方法
语法
_.intersectionWith([arrays], [comparator])
此方法与 _.intersection 类似,但它接受一个比较器,用于比较数组的元素。结果值的顺序和引用由第一个数组决定。比较器使用两个参数调用:(arrVal, othVal)。
参数
[arrays] (...Array) − 要检查的数组。
[comparator] (Function) − 每元素调用的比较器。
输出
(Array) − 返回相交值的新数组。
示例
var _ = require('lodash'); var numbers = [1.7, 2.4, 3.6, 4.2]; var listOfNumbers = ''; listOfNumbers = _.intersectionWith([{ 'x': 4 }, { 'x': 1 }], [{ 'x': 4 }], _.isEqual); console.log(listOfNumbers);
将上述程序保存在 tester.js 中。运行以下命令来执行此程序。
命令
\>node tester.js
输出
[ { x: 4 } ]
lodash_array.htm
广告