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


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


_.pullAllWith()方法类似于_.pullAll()方法,该方法返回第一个数组,该数组包含不在第一个数组中的值,而不是在第二个数组中,但在_.pullAllWith()中,将第一数组的所有元素与第二个数组进行比较。应用第三中提供的比较。通过阅读本文可能会有点复杂,但是当您看到示例时,它将变得很简单。

用法:

_.pullAllWith(array, values, [comparator])

参数:此方法接受上述和以下所述的三个参数:

  • array:此参数保存需要修改的数组。
  • values:此参数保存需要删除的值。
  • comparator:此参数保存每个元素调用的比较。

返回值:此方法返回一个数组。

范例1:在这里,const _ = require(‘lodash’)用于将lodash库导入文件中。



Javascript

// Requiring the lodash library  
const _ = require("lodash");  
    
// Original array  
let x = [1, 2, 3]  
    
// Value array to be subtracted  
let y = [2, 4, 5]  
  
// Printing the original array  
console.log("Before:", x); 
    
// Array after _.pullAllWith()  
// method where _.isEqual is the  
// comparator 
_.pullAllWith(x, y, _.isEqual); 
    
// Printing the output  
console.log("After:",x);

输出:

范例2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");  
    
// Original array  
let x = [{a:1}, {b:2}, 6]   
    
// Value array to be subtracted  
let y = [{a:1}, 7, 6]  
  
// Printing the original array  
console.log("Before:", x); 
    
// Array after _.pullAllWith()  
// method where _.isEqual is the  
// comparator 
_.pullAllWith(x, y, _.isEqual); 
    
// Printing the output  
console.log("After:",x);

输出:

相关用法


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