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


Collect.js mapInto()用法及代码示例


mapInto()方法用于遍历collection元素,并使用每个元素作为构造函数实例化给定的类。

用法:

collect(array).mapInto()

参数:collect()方法采用一个参数,该参数将转换为集合,然后在其上应用mapInto()方法。

返回值:此方法返回映射的集合元素。

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



范例1:

Javascript

const collect = require('collect.js'); 
  
const data = function (name) { 
    this.name = name; 
}; 
  
const arr = ['GFG', 'Geeks', 'GeeksforGeeks']; 
  
const collection = collect(arr); 
  
const elements = collection.mapInto(data); 
  
console.log(elements.all());

输出:

[
  data { name:'GFG' },
  data { name:'Geeks' },
  data { name:'GeeksforGeeks' }
]

范例2:

Javascript

const collect = require('collect.js'); 
  
const data = function (name, dob) { 
    this.name = name; 
    this.dob = dob; 
}; 
  
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 
    }, 
    { 
        name:'Rahul', 
        dob:'19-08-96', 
        section:'B', 
        score:77, 
    }, 
]; 
  
const collection = collect(obj); 
  
const objects = collection.mapInto(data); 
  
console.log(objects.all());

输出:

[
  data {
    name:{ 
      name:'Rahul', 
      dob:'25-10-96', 
      section:'A', 
      score:98 
    },
    dob:0
  },
  data {
    name:{ 
      name:'Aditya', 
      dob:'25-10-96', 
      section:'B', 
      score:96 },
    dob:1
  },
  data {
    name:{ 
      name:'Abhishek', 
      dob:'16-08-94', 
      section:'A', 
      score:80 
    },
    dob:2
  },
  data {
    name:{ 
      name:'Rahul', 
      dob:'19-08-96', 
      section:'B', 
      score:77 
    },
    dob:3
  }
]

相关用法


注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Collect.js mapInto() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。