服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.defaultsDeep(object, sources)

此方法与_.defaults递归分配默认属性不同。

注意:此方法发生变化object

以来

3.10.0

参数
  1. object (对象):目标对象。
  2. [sources] (...对象):源对象。
返回

(对象):返回object

_.defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } });
// => { 'a': { 'b': 2, 'c': 3 } }