當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Collect.js tap()用法及代碼示例


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 ]

參考:https://collect.js.org/api/tap.html

相關用法


注:本文由純淨天空篩選整理自gouravhammad大神的英文原創作品 Collect.js tap() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。