温馨提示×

lodash数组去重的方法是什么

小亿
452
2023-11-10 17:54:51
栏目: 编程语言

Lodash是一个JavaScript工具库,提供了许多方便的函数来处理数组、对象和其他数据类型。要在Lodash中对数组进行去重操作,有几种方法可供选择。

1. 使用`uniq`函数:`uniq`函数返回一个去除重复元素的新数组。

const _ = require('lodash');
const arr = [1, 2, 2, 3, 4, 4, 5];
const uniqueArr = _.uniq(arr);
console.log(uniqueArr); // 输出: [1, 2, 3, 4, 5]

2. 使用`uniqBy`函数:`uniqBy`函数根据指定的属性或迭代函数对数组进行去重。

const _ = require('lodash');
const arr = [
  { id: 1, name: 'John' },
  { id: 2, name: 'Jane' },
  { id: 2, name: 'Alice' },
];
const uniqueArr = _.uniqBy(arr, 'id');
console.log(uniqueArr);
// 输出: [
//   { id: 1, name: 'John' },
//   { id: 2, name: 'Jane' },
// ]

3. 使用`sortedUniq`函数:`sortedUniq`函数用于在已经排序的数组中去除重复元素。

const _ = require('lodash');
const arr = [1, 2, 2, 3, 4, 4, 5];
const sortedUniqueArr = _.sortedUniq(arr);
console.log(sortedUniqueArr); // 输出: [1, 2, 3, 4, 5]

以上是几种常用的在Lodash中进行数组去重的方法。根据具体的需求和数据结构,选择适合的方法即可。

0