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


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


_.uniqWith()方法类似于_.uniq()方法(即,它创建数组的duplicate-free版本,其中仅保留每个元素的第一个出现。)不同之处在于,它接受比较器,该比较器被调用以比较数组的元素。结果值的顺序由它们在数组中出现的顺序决定。

用法:

_.uniqWith(array, [comparator])

参数:该方法接受上述和以下所述的两个参数:

  • array:此参数保存要检查的数组。
  • [比较器](函数):该参数保存每个元素调用的比较器,并使用两个参数(arrVal,othVal)调用。

返回值:此方法返回新的重复的自由数组。

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



javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
var objects = [{ 'x':5, 'y':2 }, { 'x':3, 'y':  
  
4 }, { 'x':5, 'y':2 } ];     
  
// Use of _.uniqWith() method 
let gfg = _.uniqWith(objects, _.isEqual); 
      
// Printing the output  
console.log(gfg);

输出:

[ { x:5, y:2 }, { x:3, y:4 } ]

范例2:

javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
var objects = [ 2.2, 3.2, 4.2, 3.2, 5.2, 4.2 ];     
  
// Use of _.uniqWith() method 
let gfg = _.uniqWith(objects, _.isEqual); 
      
// Printing the output  
console.log(gfg);

输出:

[ 2.2, 3.2, 4.2, 5.2]

范例3:

javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
var objects = ['p', 'q', 'r',  
      'u', 's', 't', 'r', 'u'];     
  
// Use of _.uniqWith() method 
let gfg = _.uniqWith(objects, _.isEqual); 
      
// Printing the output  
console.log(gfg);

输出:

['p', 'q', 'r', 'u', 's', 't']

注意:该代码在常规JavaScript中不起作用,因为它需要安装库lodash。




相关用法


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