当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Lodash _.pullAllBy()用法及代码示例


_.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。

相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Lodash _.pullAllBy() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。