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


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


mapWithKeys()方法用於迭代收集元素,並將每個收集元素傳遞到給定的回調函數中。回調函數返回一個包含鍵,值對的數組。

用法:

collect(array).mapWithKeys(callback)

參數:collect()方法采用一個參數,該參數將轉換為集合,然後將mapWithKeys()方法應用於該參數。 mapWithKeys()方法將回調函數作為參數保存。

返回值:此方法返回一個包含鍵值對的數組。

模塊安裝:使用以下命令從項目的根目錄安裝collect.js模塊:



npm install collect.js

以下示例說明了collect.js中的mapWithKeys()方法:

示例1:Filename:index.js

Javascript

// Requiring the module 
const collect = require('collect.js'); 
  
let obj = [ 
    { 
        name:'Rahul', 
        dob:'25-10-96', 
    }, 
    { 
        name:'Aditya', 
        dob:'25-10-96', 
    }, 
    { 
        name:'Abhishek', 
        dob:'16-08-94', 
    }, 
    { 
        name:'Rahul', 
        dob:'25-10-96', 
    }, 
]; 
  
// Creating collection object 
const collection = collect(obj); 
  
// Function call 
const sequence = collection.mapWithKeys( 
    element => [element.name, element.dob]); 
  
// Printing the sequence 
console.log(sequence.all());

使用以下命令運行index.js文件:

node index.js

輸出:

{ Rahul:'25-10-96', Aditya:'25-10-96', Abhishek:'16-08-94' }

示例2:Filename:index.js

Javascript

// Requiring the module 
const collect = require('collect.js'); 
  
let obj = [ 
    { 
        name:'Rahul', 
        dob:'25-10-96', 
        section:'A', 
        score:98, 
    }, 
    { 
        name:'Aditya', 
        dob:'25-10-96', 
        section:'B', 
        score:96, 
    }, 
    { 
        name:'Abhishek', 
        dob:'16-08-94', 
        section:'A', 
        score:80 
    } 
]; 
  
// Creating collecion object 
const collection = collect(obj); 
  
// Function call 
const sequence = collection.mapWithKeys( 
    element => [element.name, element.section]); 
  
// Printing the sequence 
console.log(sequence.all());

使用以下命令運行index.js文件:

node index.js

輸出:

{ Rahul:'A', Aditya:'B', Abhishek:'A' }

相關用法


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