Lodash _.map

2021-09-24 10:07 更新

_.map(collection, [iteratee=_.identity])

創(chuàng)建一個數(shù)組, value(值) 是 iteratee(迭代函數(shù))遍歷 collection(集合)中的每個元素后返回的結(jié)果。 iteratee(迭代函數(shù))調(diào)用3個參數(shù):(value, index|key, collection).lodash 中有許多方法是防止作為其他方法的迭代函數(shù)(注:即不能作為iteratee參數(shù)傳遞給其他方法),例如:_.every,_.filter,_.map,_.mapValues,_.reject, 和_.some。受保護(hù)的方法有(注:即這些方法不能使用_.every,_.filter,_.map,_.mapValues,_.reject, 和_.some作為 iteratee 迭代函數(shù)參數(shù)) :ary, chunk, curry, curryRight, drop, dropRight, every,fill, invert, parseInt, random, range, rangeRight, repeat,sampleSize, slice, some, sortBy, split, take, takeRight,template, trim, trimEnd, trimStart, and words

添加版本

0.1.0

參數(shù)

  1. collection (Array|Object): 用來迭代的集合。
  2. [iteratee=_.identity] (Array|Function|Object|string): 每次迭代調(diào)用的函數(shù)。

返回

(Array): 返回新的映射后數(shù)組。

例子

function square(n) {  return n * n;} _.map([4, 8], square);
// => [16, 64] 
_.map({ 'a': 4, 'b': 8 }, square);
// => [16, 64] (iteration order is not guaranteed) 
var users = [  { 'user': 'barney' },  { 'user': 'fred' }]; 
// The `_.property` iteratee shorthand.
_.map(users, 'user');
// => ['barney', 'fred']


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號