当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Lodash _.defaultsDeep()用法及代码示例


_.defaultsDeep()方法递归地分配默认属性。它与_.defaults()函数几乎相同。此方法使对象变异。

用法:

_.defaultsDeep(object, [sources])

参数:此方法接受上面提到和下面描述的两个参数:

  • object:此参数保存目标对象。
  • sources:此参数保存源对象。

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

范例1:



Javascript

// Requiring the lodash library   
const _ = require("lodash"); 
  
// Given object 
var info = { 
    Name:"GeeksforGeeks", 
    password:"gfg@1234", 
    username:"your_geeks"
} 
  
// Use of _.defaultsDeep() method 
console.log(_.defaultsDeep(info, 
    _.defaults(info, { id:'Id97' })));

输出:

{
  Name:'GeeksforGeeks',
  password:'gfg@1234',
  username:'your_geeks',
  id:'Id97'
}

范例2:

Javascript

// Requiring the lodash library   
const _ = require("lodash"); 
  
// Use of _.defaultsDeep() method 
console.log(_.defaultsDeep( 
    { 
        'x':{ 'y':20 } 
    }, 
    { 
        'x':{ 'y':10, 'z':30 } 
    } 
) 
);

输出:

{ 'x':{ 'y':20, 'z':30 } }

相关用法


注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 Lodash _.defaultsDeep() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。