📜  Collect.js pipe() 方法

📅  最后修改于: 2022-05-13 01:56:21.070000             🧑  作者: Mango

Collect.js pipe() 方法

pipe() 方法用于保存一个回调函数并将该函数应用到集合中并返回相应的结果。

句法:

collect(array).pipe(callback)

参数: collect() 方法采用一个参数,该参数转换为集合,然后将 pipe() 方法应用于它。 pipe() 方法将回调作为参数保存。

返回值:此方法返回应用于集合的回调函数的结果。

模块安装:使用以下命令从项目的根目录安装collect.js模块:

npm install collect.js

下面的示例说明了 collect.js 中的 pipe() 方法:

示例 1:文件名: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);


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

输出:

22

示例 2:文件名: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