Lodash - pullAllBy 方法



语法

_.pullAllBy(array, values, [iteratee=_.identity])

此方法类似于 _.pullAll,但它接受 iteratee,将针对数组的每个元素和值调用该 iteratee,以生成比较它们的标准。将使用一个参数调用 iteratee:(值)。

参数

  • array (Array) − 要修改的数组。

  • values (Array) − 要移除的值。

  • [iteratee=_.identity] (Function) − 按元素调用的 iteratee。

输出

  • (Array) − 返回数组。

示例

var _ = require('lodash');
var listOfNumbers = [{ 'x': 4 }, { 'x': 1 }];

_.pullAllBy(listOfNumbers, [{ 'x': 4 }], 'x');
console.log(listOfNumbers);

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

命令

\>node tester.js

输出

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