Collect.js是用于处理数组和对象的流利且便捷的包装器。这个轻拍()函数接受集合作为参数,并且在不影响集合的情况下允许用户点击在特定点进入收藏夹,然后对该商品进行任何处理。
安装:使用以下命令安装Collect.js模块:
npm install --save collect.js
用法:
collection.tap(callback)
参数:此函数仅使用一个参数,即根据用户需要执行的回调函数。
返回值:此函数返回新的集合对象。
范例1:Filename-index.js
Javascript
// Requiring module
const collect = require('collect.js')
// User defined collection
var myCollection = [2, 4, 3, 1, 5]
// Function call
var newCollection = collect(myCollection)
.tap((collection) => {
// Printing collection
console.log(collection.all());
})
console.log(newCollection)
使用以下命令运行index.js文件:
node index.js
输出:
[ 2, 4, 3, 1, 5 ] Collection { items:[ 2, 4, 3, 1, 5 ] }
示例2:Filename-index.js
Javascript
// Requiring module
const collect = require('collect.js')
// User defined collection
var myCollection = [-1,2,0,25]
// Sorting and displaying result
collect(myCollection).sort().tap((collection) => {
console.log(collection.all());
})
使用以下命令运行index.js文件:
node index.js
输出:
[ -1, 0, 2, 25 ]
相关用法
- underscore.js _.tap()用法及代码示例
- Lodash _.tap()用法及代码示例
- jQuery Mobile tap用法及代码示例
- PHP imagecreatetruecolor()用法及代码示例
- p5.js year()用法及代码示例
- d3.js d3.utcTuesdays()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP Imagick floodFillPaintImage()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP opendir()用法及代码示例
- PHP cal_to_jd()用法及代码示例
注:本文由纯净天空筛选整理自gouravhammad大神的英文原创作品 Collect.js tap() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。