_.xorBy方法类似于_.xor()方法,不同之处在于它接受为每个数组的每个元素调用的iteratee,以生成比较它们的标准。结果值的顺序取决于它们在数组中出现的顺序。
用法:
_.xorBy(arrays, iteratee)
参数:该方法接受上述和以下所述的两个参数:
- arrays:此参数保存要检查的阵列。
- iteratee:此参数保存每个元素调用的iteratee,并使用一个参数(值)调用。
返回值:此方法返回新的过滤值数组。
范例1:在这里,const _ = require(‘lodash’)用于将lodash库导入文件中。
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var x = _.xorBy([3.1, 1.3, 4.6],
[3.3, 3.4], Math.floor);
var y = _.xorBy([4.1, 2.3, 7.6],
[4.3, 7.4], Math.floor);
// Use of _.xorBy() method
let gfg = _.xorBy(x);
let gfg2 = _.xorBy(y);
// Printing the output
console.log(gfg);
console.log(gfg2);
输出:
[ 1.3, 4.6 ] [ 2.3 ]
范例2:
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var x = _.xorBy([{ 'x':11 }],
[{ 'x':12 }, { 'x':11 }], 'x');
var y = _.xorBy([{ 'x':11.2 }],
[{ 'x':12.2 }, { 'x':56.3 },
{ 'x':38.21 }, { 'x':11.2 }], 'x');
// Use of _.xorBy() method
// The `_.property` iteratee shorthand
let gfg = _.xorBy(x);
let gfg3 = _.xorBy(y);
// Printing the output
console.log(gfg);
console.log(gfg3);
输出:
[ { x:12 } ] [ { x:12.2 }, { x:56.3 }, { x:38.21 }]
范例3:
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var x = _.xorBy([ 'p'], ['q',
'r', 's', 'p' ]);
var y = _.xorBy([ 'tee'], ['tee',
'cee', 'dee', 'bee', 'eee' ]);
// Use of _.xorBy() method
// The `_.property` iteratee shorthand
let gfg = _.xorBy(x);
let gfg3 = _.xorBy(y);
// Printing the output
console.log(gfg);
console.log(gfg3);
输出:
['q', 'r', 's' ] ['cee', 'dee', 'bee', 'eee' ]
注意:该代码在常规JavaScript中不起作用,因为它需要安装库lodash。
相关用法
- Lodash _.zip()用法及代码示例
- Lodash _.add()用法及代码示例
- Lodash _.nth()用法及代码示例
- Lodash _.take()用法及代码示例
- Lodash _.xor()用法及代码示例
- Lodash _.max()用法及代码示例
- Lodash _.every()用法及代码示例
- Lodash _.min()用法及代码示例
- Lodash _.last()用法及代码示例
- Lodash _.uniqWith()用法及代码示例
- Lodash _.pullAllBy()用法及代码示例
- Lodash _.countBy()用法及代码示例
- Lodash _.pullAllWith()用法及代码示例
- Lodash _.drop()用法及代码示例
- Lodash _.lastIndexOf()用法及代码示例
- Lodash _.sortedIndexBy()用法及代码示例
- Lodash _.sortedIndex()用法及代码示例
- Lodash _.join()用法及代码示例
- Lodash _.isDate()用法及代码示例
- Lodash _.head()用法及代码示例
注:本文由纯净天空筛选整理自shivanisinghss2110大神的英文原创作品 Lodash _.xorBy() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。