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


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


Lodash是一个JavaScript库,可在underscore.js之上运行。 Lodash帮助处理数组,字符串,对象,数字等。

lodash中Lang的_.isEqualWith()方法与_.isEqual()方法相似,唯一的区别是它接受被调用以比较值的定制器。此外,如果此处使用的定制程序返回未定义,则比较将由方法处理。

注意:此处使用的定制器最多可以调用六个参数,即objValue,othValue,index | key,object,other和stack。

用法:

_.isEqualWith(value, other, [customizer])

参数:此方法接受上述和以下所述的三个参数:



  • value:它是要比较的值。
  • other:这是要比较的另一个值。
  • customizer:它是用于自定义比较的函数。

返回值:如果声明的值相等,则此方法返回true,否则返回false。

范例1:

Javascript

// Requiring lodash library 
const _ = require('lodash'); 
  
// Defining a function portal 
function portal(val) { 
  return /^G(?:fG|eeksforGeeks)$/.test(val); 
} 
   
// Defining customizer to compare values 
function customizer(objectValue, otherValue) { 
  if (portal(objectValue) && portal(otherValue)) { 
    return true; 
  } 
} 
  
// Initializing values 
var val = ['GeeksforGeeks', 'CS-portal']; 
var otherval = ['GfG', 'CS-portal']; 
  
// Calling isEqualWith() method with all 
// its parameter 
let result = _.isEqualWith(val, otherval, customizer);  
  
// Displays output 
console.log(result);

输出:

true

范例2:

Javascript

// Requiring lodash library 
const _ = require('lodash'); 
  
// Defining a function portal 
function portal(val) { 
  return /^G(?:fG|eeksforGeeks)$/.test(val); 
} 
   
// Defining customizer to compare values 
function customizer(objectValue, otherValue) { 
  if (portal(objectValue) && portal(otherValue)) { 
    return true; 
  } 
} 
  
// Initializing values 
var val = ['GeeksforGeeks', 'CS-portal']; 
var otherval = ['GfG', 'portal']; 
  
// Calling isEqualWith() method with all 
// its parameter 
let result = _.isEqualWith(val, otherval, customizer);  
  
// Displays output 
console.log(result);

输出:

false

范例3:

Javascript

// Requiring lodash library 
const _ = require('lodash'); 
  
// Defining a function gfg 
function gfg(val) { 
  return val; 
} 
  
// Defining customizer 
function intg(x, y) { 
 if (gfg(x) === gfg(y)){   
  return true; 
   } 
} 
  
// Calling isEqualWith() method with all 
// its parameter 
let result = _.isEqualWith('gf', 'gfg', intg);  
  
// Displays output 
console.log(result);

输出:

false

参考: https://lodash.com/docs/4.17.15#isEqualWith

相关用法


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