pipe()方法用于保留回调函数并将此函数应用于集合中并返回相应的结果。
用法:
collect(array).pipe(callback)
参数:collect()方法采用一个参数,该参数将转换为集合,然后将pipe()方法应用于该参数。 pipe()方法将回调保留为参数。
返回值:此方法返回应用于集合的回调函数的结果。
模块安装:使用以下命令从项目的根目录安装collect.js模块:
npm install collect.js
以下示例说明了collect.js中的pipe()方法:
示例1:Filename:index.js
Javascript
// Requiring the module
const collect = require('collect.js');
// Creating collection object
const collection = collect([1,
2, 3, 5, 6, 8, 9, 11, 17, 22]);
// Function call
const pipe_val = collection.pipe(
element => element.max());
// Printing the values
console.log(pipe_val);
使用以下命令运行index.js文件:
node index.js
输出:
22
示例2:Filename:index.js
Javascript
// Requiring the module
const collect = require('collect.js');
// Creating collection object
const collection = collect([1, 2,
3, 5, 6, 8, 9, 11, 17, 22]);
// Function call
const pipe_sum = collection.pipe(
element => element.sum());
// Printing the values
console.log(pipe_sum);
使用以下命令运行index.js文件:
node index.js
输出:
84
相关用法
- node.js Stream readable.pipe()用法及代码示例
- jQuery deferred.pipe()用法及代码示例
- Node.js Writable Stream pipe事件用法及代码示例
- Lodash _.method()用法及代码示例
- Node.js Http2ServerRequest.method用法及代码示例
- Node.js http.IncomingMessage.method用法及代码示例
- Javascript dataView.getInt16()用法及代码示例
- Javascript RegExp toString()用法及代码示例
- Node.js URLSearchParams.has()用法及代码示例
- JavaScript Math cosh()用法及代码示例
- HTML DOM isEqualNode()用法及代码示例
- JavaScript Date toLocaleTimeString()用法及代码示例
- Node.js crypto.createHash()用法及代码示例
- Node.js writeStream.clearLine()用法及代码示例
- Node.js fs.link()用法及代码示例
- JavaScript Math random()用法及代码示例
- JavaScript Math round()用法及代码示例
- Javascript toString()用法及代码示例
- Javascript Number.isInteger( )用法及代码示例
- Javascript Number.isFinite()用法及代码示例
- Javascript toFixed()用法及代码示例
- Javascript toPrecision()用法及代码示例
注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Collect.js pipe() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。