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


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


_.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。




相关用法


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