Lodash _.omit() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.omit()方法用于返回对象的副本,该对象由未省略的给定对象的自身和继承的可枚举属性路径组成。它与 _.pick() 方法相反。
句法:
_.omit( object, paths )
参数:此方法接受上面提到的两个参数,如下所述:
- object:此参数保存源对象。
- 路径:此参数保存要省略的属性路径。
返回值:此方法返回新对象。
示例 1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// The source object
var obj = {
Name: "GeeksforGeeks",
password: "gfg@1234",
username: "your_geeks"
}
// Using the _.omit() method
console.log(_.omit(obj, ['password', 'username']));
Javascript
// Requiring the lodash library
const _ = require("lodash");
// The source object
var obj = { 'x': 1, 'y': '2', 'z': 3 };
// Use the _.omit() method
console.log(_.omit(obj, ['x', 'y']));
输出:
{Name: "GeeksforGeeks"}
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// The source object
var obj = { 'x': 1, 'y': '2', 'z': 3 };
// Use the _.omit() method
console.log(_.omit(obj, ['x', 'y']));
输出:
{'z': 3}