- 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 | 每个
_.each(列表, iteratee, [上下文]) |
2 | 地图
_.map(列表, iteratee, [上下文]) |
3 | 减少
_.reduce(列表, iteratee, [备忘录], [上下文]) |
4 | 减少右
_.reduceRight(列表, iteratee, [备忘录], [上下文]) |
5 | 寻找
_.find(列表、谓词、[上下文]) |
6 | 筛选
_.filter(列表、谓词、[上下文]) |
7 | 在哪里
_.where(列表,属性) |
8 | 查找地点
_.findWhere(列表,属性) |
9 | 拒绝
_.reject(列表、谓词、[上下文]) |
10 | 每一个
_.every(列表, [谓词], [上下文]) |
11 | 一些
_.some(列表, [谓词], [上下文]) |