Lodash - pullAllWith 方法
语法
_.pullAllWith(array, values, [comparator])
此方法类似于 _.pullAll,但它接受 comparator,用于将数组元素与值进行比较。comparator 使用两个参数调用:(arrVal, othVal)。
参数
数组 (Array) − 要修改的数组。
值 (Array) − 要移除的值。
[比较器] (Function) − 为每种元素调用的比较器。
输出
(Array) − 返回数组。
示例
var _ = require('lodash'); var listOfNumbers = [{ 'x': 4 }, { 'x': 1 }]; _.pullAllWith(listOfNumbers, [{ 'x': 4 }], _.isEqual); console.log(listOfNumbers);
将以上程序保存在 tester.js 中。运行以下命令以执行此程序。
命令
\>node tester.js
输出
[ { x: 1 } ]
lodash_array.htm
广告