Lodash _.unset() 方法
Lodash _.unset()方法用于移除对象路径处的属性。如果属性被删除,则返回 True 值,否则返回 False。
句法:
_.unset(object, path)
参数:此方法接受上面提到的两个参数,如下所述:
- object:此参数保存要修改的对象。
- path:此参数保存要取消设置的属性的路径。它可以是数组或字符串。
返回值:如果属性被删除,此方法返回true ,否则返回false 。
示例 1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// The source object
var obj = { 'cpp': [{ 'java': { 'python': 3 } }] };
// Use of _.unset() method
console.log(_.unset(obj, 'cpp[0].java.python'));
// Object is modified
console.log(obj);
Javascript
// Requiring the lodash library
const _ = require("lodash");
// The source object
var obj = { 'cpp': [{ 'java': { 'python': 3 } }] };
// Use of _.unset() method
console.log(_.unset(obj, ['html', 'css', 'javascript']));
// Object
console.log(obj);
输出:
true
{ cpp: [ { java: {} } ] }
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// The source object
var obj = { 'cpp': [{ 'java': { 'python': 3 } }] };
// Use of _.unset() method
console.log(_.unset(obj, ['html', 'css', 'javascript']));
// Object
console.log(obj);
输出:
true
{ cpp: [ { java: [Object] } ] }
注意:这在普通 JavaScript 中不起作用,因为它需要安装库 lodash,并且可以使用npm install lodash 安装。 .