📜  Lodash _.pickBy() 方法

📅  最后修改于: 2022-05-13 01:56:22.890000             🧑  作者: Mango

Lodash _.pickBy() 方法

Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。

_.pickBy()方法用于返回由对象属性谓词返回truthy 组成的对象的副本。

句法:

_.pickBy( object, predicate )

参数:此方法接受上面提到的两个参数,如下所述:

  • object:此参数保存源对象。
  • 谓词:此参数保存为每个属性调用的函数。它是一个可选值。

返回值:此方法返回新对象。

示例 1:

Javascript
// Requiring the lodash library  
const _ = require("lodash");  
  
// The source object
var obj = { 
    Name: "GeeksforGeeks", 
    password: 123456, 
    username: "your_geeks"
}
  
// Using the _.pickBy() method 
console.log(_.pickBy(obj, _.isLength));


Javascript
// Requiring the lodash library  
const _ = require("lodash");  
  
// The source object
var obj = { 'x': 1, 'y': '2', 'z': 3 };
  
// Using the _.pickBy() method 
console.log(_.pickBy(obj, _.isNumber));


输出:

{'password': 123456}

示例 2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");  
  
// The source object
var obj = { 'x': 1, 'y': '2', 'z': 3 };
  
// Using the _.pickBy() method 
console.log(_.pickBy(obj, _.isNumber));

输出:

{'x': 1, 'z': 3}