Lodash _.matches() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。 match方法创建一个函数,在给定对象和源之间执行部分深度比较,如果给定对象具有等效的属性值,则返回 true,否则返回 false。
句法:
_.matches(source)
参数:此方法接受一个如上所述和如下所述的参数:
- source:要匹配的属性值的对象。
返回: [函数] 它返回新的规范函数。
示例 1 :
// Requiring the lodash library
const _ = require("lodash");
// Using _.matches() method
var geek = [ {'java' : 3, 'python' : 5, 'js' : 7},
{'java' : 4, 'python' : 2, 'js' : 6}
];
let gfg = _.filter(geek, _.matches({'java' : 3, 'js' : 7 }));
// Storing the Result
console.log(gfg)
注意:这里使用 const _ = require('lodash') 来导入文件中的 lodash 库。
输出:
[Object {java: 3, js: 7, python: 5}]
示例 2:
// Requiring the lodash library
const _ = require("lodash");
// Using _.matches() method
var objects = [
{ 'a': 1, 'b': 2, 'c': 3 },
{ 'a': 4, 'b': 5, 'c': 6 },
{ 'a': 8, 'b': 7, 'c': 9 }
];
gfg= _.filter(objects, _.matches({ 'a': 8}));
// => [{ 'a': 4, 'b': 5, 'c': 6 }]
// Storing the Result
console.log(gfg)
注意:这里使用 const _ = require('lodash') 来导入文件中的 lodash 库。
输出:
[Object {a: 8, b: 7, c: 9}]