Underscore.js 对象 isMatch 方法

返回 Underscore.js 比较对象


语法

_.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);

上面示例运行结果如下

Underscore.js  对象 isMatch 方法运行结果


返回 Underscore.js 比较对象

查看笔记

扫码一下
查看教程更方便