📜  Lodash _.pullAllWith() 方法

📅  最后修改于: 2022-05-13 01:56:35.568000             🧑  作者: Mango

Lodash _.pullAllWith() 方法

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

句法:

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

参数:此方法接受三个参数,如上所述,如下所述:

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

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

示例 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);


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);


输出:

示例 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);

输出: