- Underscore.JS 教程
- Underscore.JS - 首页
- Underscore.JS - 概述
- Underscore.JS - 环境设置
- Underscore.JS - 迭代集合
- Underscore.JS - 处理集合
- Underscore.JS - 迭代数组
- Underscore.JS - 处理数组
- Underscore.JS - 函数
- Underscore.JS - 映射对象
- Underscore.JS - 更新对象
- Underscore.JS - 比较对象
- Underscore.JS - 实用程序
- Underscore.JS - 链式调用
- Underscore.JS 实用资源
- Underscore.JS - 快速指南
- Underscore.JS - 实用资源
- Underscore.JS - 讨论
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(对象) |
广告