📜  Collect.js mapWithKeys() 方法

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

Collect.js mapWithKeys() 方法

mapWithKeys() 方法用于遍历集合元素并将每个集合元素传递给给定的回调函数。回调函数返回一个包含键值对的数组。

句法:

collect(array).mapWithKeys(callback)

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

返回值:此方法返回一个包含键、值对的数组。

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

npm install collect.js

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

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


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 collection 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: '25-10-96', Aditya: '25-10-96', Abhishek: '16-08-94' }

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