_.pullAllBy()方法用于通过使用Iteratee函数遍历数组中的每个元素,从而从原始数组中删除值。它与_.pullAll()函数几乎相同。
用法:
_.pullAllBy(array, values, [iteratee=_.identity])
参数:此方法接受上面提到和下面描述的两个参数:
- array:此参数保存需要修改的数组。
- values:此参数将值保存在需要从第一个数组中删除的数组中。
- Iteratee:这是Iteratee对每个元素的函数。
返回值:它返回一个数组。
注意:如果未提供iteratee函数,则_.pullAllBy()函数充当_.pullAll()函数。
范例1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Ooriginal array
let array1 = [1, 2, 3, 4.2]
// Array to be subtracted
let val = [2, 3, 3, 5]
// Printing the original array
console.log("Before:", array1);
// Array after _.pullAllBy()
// method where Math.double is the
// comparable function
_.pullAllBy(array1, val, Math.double);
// Printing the output
console.log("After:", array1);
输出:
范例2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
let array1 = [1, 2, 3, 4.2]
let array2 = [1, 2, 3, 4.2]
// Value array to be subtracted
let val = [2, 3, 4, 5]
// Printing the original array
console.log("Before:", array1);
// Array after _.pullAllBy()
// method where Math.double is the
// comparable function
_.pullAllBy(
array1, val, Math.floor);
// Array after _.pullAllBy function
// where no comparable function is given
_.pullAllBy(array2, val);
// Printing the output
console.log("When compare funct is given:",
array1);
// Printing the output
console.log("When compare funct is not given:",
array2);
输出:
注意:在正常的JavaScript中这将无法正常工作,因为它需要安装库lodash。
相关用法
- Lodash _.method()用法及代码示例
- Lodash _.sneq()用法及代码示例
- Lodash _.toQuery()用法及代码示例
- Lodash _.uniqWith()用法及代码示例
- Lodash _.xorWith()用法及代码示例
- Lodash _.head()用法及代码示例
- Lodash _.remove()用法及代码示例
- Lodash _.pullAt()用法及代码示例
- Lodash _.pullAll()用法及代码示例
- Lodash _.pull()用法及代码示例
- Lodash _.nth()用法及代码示例
- Lodash _.takeRight()用法及代码示例
- Lodash _.take()用法及代码示例
- Lodash _.sortedLastIndex()用法及代码示例
- Lodash _.fromPairs()用法及代码示例
- Lodash _.differenceWith()用法及代码示例
- Lodash _.castArray()用法及代码示例
- Lodash _.cloneDeep()用法及代码示例
- Lodash _.clone()用法及代码示例
- Lodash _.sampleSize()用法及代码示例
- Lodash _.find()用法及代码示例
- Lodash _.zipWith()用法及代码示例
- Lodash _.zipObject()用法及代码示例
- Lodash _.xor()用法及代码示例
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Lodash _.pullAllBy() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。