_.uniqBy方法类似于_.uniq,不同之处在于它接受为数组中的每个元素调用的iteratee,以生成用于计算唯一性的标准。结果值的顺序由它们在数组中出现的顺序决定。
用法:
_.unionBy([array], [iteratee=_.identity])
参数:该方法接受上述和以下所述的两个参数:
- [数组]:此参数保存要检查的阵列。
- [iteratee = _。identity](函数):此参数保存每个元素调用的iteratee。
返回值:此方法用于返回新的重复自由数组。
范例1:在这里,const _ = require(‘lodash’)用于将lodash库导入文件中。
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
let y = ([2.4, 1.6, 2.2, 1.3]);
// Use of _.uniqBy()
// method
let gfg = _.uniqBy(y, Math.floor);
// Printing the output
console.log(gfg);
输出:
[2.4, 1.6 ]
范例2:
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
let y = ( [{'x':2 }, { 'x':2 }, { 'x':1 }]);
// Use of _.uniqBy()
// method
// The `_.property` iteratee shorthand.
let gfg = _.uniqBy(y, 'x');
// Printing the output
console.log(gfg);
输出:
[ { 'x':2 }, { 'x':1 } ]
范例3:
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
let y = (['aee', 'bee', 'bee', 'cee', 'eee',
'dee', 'gee', 'dee']);
// Use of _.uniqBy()
// method
// The `_.property` iteratee shorthand.
let gfg = _.uniqBy(y);
// Printing the output
console.log(gfg);
输出:
['aee', 'bee', 'cee', 'eee', 'dee', 'gee']
注意:该代码在常规JavaScript中不起作用,因为它需要安装库lodash。
相关用法
- Lodash _.every()用法及代码示例
- Lodash _.max()用法及代码示例
- Lodash _.last()用法及代码示例
- Lodash _.nth()用法及代码示例
- Lodash _.add()用法及代码示例
- Lodash _.zip()用法及代码示例
- Lodash _.take()用法及代码示例
- Lodash _.xor()用法及代码示例
- Lodash _.min()用法及代码示例
- Lodash _.meanBy()用法及代码示例
- Lodash _.sortedLastIndex()用法及代码示例
- Lodash _.takeRight()用法及代码示例
- Lodash _.maxBy()用法及代码示例
- Lodash _.minBy()用法及代码示例
- Lodash _.xorBy()用法及代码示例
- Lodash _.zipObjectDeep()用法及代码示例
- Lodash _.pullAt()用法及代码示例
- Lodash _.pullAll()用法及代码示例
- Lodash _.pullAllWith()用法及代码示例
- Lodash _.groupBy()用法及代码示例
注:本文由纯净天空筛选整理自shivanisinghss2110大神的英文原创作品 Lodash _.uniqBy() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。