- 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 - 串接方法
语法
_.chain(object)
串接方法返回一个包裹的对象,并且当调用此对象上的方法时,每个方法都会返回包裹的对象,直到调用 value 方法。请参见以下示例
示例
var _ = require('underscore'); var students = [{name: 'Sam', age: 10},{name: 'Joe', age: 8},{name: 'Rob', age: 12}] //Get the highest aged student using chain method var eldest = _.chain(students) .sortBy(function(student){return student.age;}) .map(function(student){return "Name: " + student.name + ", age: " + student.age;}) .last() .value(); console.log(eldest);
将以上程序保存在 tester.js 中。运行以下命令以执行此程序。
命令
\>node tester.js
输出
Name: Rob, age: 12
underscorejs_chaining.htm
广告