扫码一下
查看教程更方便
_.isMatch(object, properties)
isMatch() 告诉你 properties 中的键和值是否包含在 object 中。
var _ = require('underscore');
var student = {name: 'Sam', age: 10 }
//示例 1: 检查是否有 name 为 Sam 的 student
var result = _.isMatch(student, {name: 'Sam'});
console.log(result);
//示例 2: 检查是否有 age 为 10 的 student
result = _.isMatch(student, {age: 10});
console.log(result);
上面示例运行结果如下