阅读(4730) (0)

Lodash _.isMatchWith

2021-09-22 10:19:07 更新

_.isMatchWith(object, source, [customizer]) 

这个方法类似_.isMatch。 除了它接受一个 customizer 定制比较的值。 如果 customizer 返回 undefined 将会比较处理方法代替。 customizer 会传入5个参数:(objValue, srcValue, index|key, object, source)。

添加版本

4.0.0

参数

  1. object (Object): 要检查的对象。
  2. source (Object): 属性值相匹配的对象。
  3. [customizer] (Function): 这个函数用来定制比较。

返回

(boolean): 如果object匹配,那么返回 true,否则返回 false。

例子

function isGreeting(value) {  return /^h(?:i|ello)$/.test(value);} function customizer(objValue, srcValue) 
{  if (isGreeting(objValue) && isGreeting(srcValue)) 
{    return true;  }} var object = { 'greeting': 'hello' };
var source = { 'greeting': 'hi' }; 
_.isMatchWith(object, source, customizer);
// => true