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


Lodash _.map()用法及代码示例


Lodash是一个JavaScript库,可在underscore.js顶部使用。 Lodash帮助处理数组,集合,字符串,对象,数字等。

_.map()方法通过通过iteratee运行集合中的每个元素来创建值数组。对于诸如_.every(),_。filter(),_。map(),_。mapValues(),_。reject()和_.some()方法之类的方法,有许多lodash方法应作为迭代来使用。

用法:

_.map( collection, iteratee )

参数:该方法接受上述和以下所述的两个参数:

  • collection:此参数保留要迭代的集合。
  • iteratee:此参数保存每次迭代调用的函数。

返回值:此方法返回新的映射数组。



范例1:

// Requiring the lodash library  
const _ = require("lodash");  
       
// Original array  
var array = _.map([5, 18]); 
   
// Use of _.map() method 
let mapped_array = _.map(array, function square(n) { 
  return n * n; 
}) 
  
// Printing the output  
console.log(mapped_array);

输出:

[ 25, 324 ]

范例2:

// Requiring the lodash library  
const _ = require("lodash");  
       
// Original array  
var array = _.map({ 'x':14, 'y':28 }); 
   
// Use of _.map() method 
let mapped_array = _.map(array, function square(n) { 
  return n * n; 
}) 
  
// Printing the output  
console.log(mapped_array);

输出:

[ 196, 784 ]

范例3:

// Requiring the lodash library  
const _ = require("lodash");  
       
// Original array  
var users = [ 
  { 'user':'jonny' }, 
  { 'user':'john' } 
]; 
   
// Use of _.map() method 
// The `_.property` iteratee shorthand 
let mapped_array = _.map(users, 'user'); 
  
// Printing the output  
console.log(mapped_array);

输出:

[ 'jonny', 'john' ]




相关用法


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