当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。