📜  Lodash _.omitBy() 方法

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

Lodash _.omitBy() 方法

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

_.omitBy()方法用于返回对象的副本,该对象由谓词不为其返回真值的对象的自己的和继承的可枚举字符串键属性组成。它与 _.pickBy() 方法相反。

句法:

_.omitBy( 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 _.omitBy() method
console.log(_.omitBy(obj, _.isLength));


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


输出:

{Name: "GeeksforGeeks", username: "your_geeks"}

示例 2:

Javascript

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

输出:

{'y': '2'}