Underscore.JS - 更新对象



Underscore.JS 有很多易于使用的方法,有助于更新对象。本章将详细讨论这些方法。

Underscore.JS 提供了各种方法来处理对象更新,如下所示 −

序号 方法和语法
1 extend

_.extend(目标对象,*源对象)

2 pick

_.pick(对象,*键)

3 omit

_.omit(对象,*键)

4 defaults

_.defaults(对象,*默认值)

5 clone

_.clone(对象)

6 tap

_.tap(对象,拦击器)

7 has

_.has(对象,键)

8 property

_.property(路径)

9 propertyOf

_.propertyOf(对象)

广告