Lodash教程

Lodash matches method

语法

_.matches(source)
Creates a function that performs a partial deep comparison between a given object and source, returning true if the given object has equivalent property values, else false.

参数

source (Object) − The object of property values to match.

输出

(Function) − Returns the spec function.

实例

var _ = require('lodash');
var objects = [
   { 'a': 1, 'b': 2, 'c': 3 },
   { 'a': 4, 'b': 5, 'c': 6 }
];
 
var result = _.filter(objects, _.matches({ 'a': 4, 'c': 6 }));
console.log(result);
Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

输出

[ { a: 4, b: 5, c: 6 } ]
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4