當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Lodash _.flatMap()用法及代碼示例

Lodash是一個JavaScript庫,可在underscore.js頂部使用。 Lodash幫助處理數組,集合,字符串,對象,數字等。
_.flatMap()方法通過遍曆collection中的每個元素並展平映射的結果來創建展平的值數組。

用法:

_.flatMap(collection, iteratee)

參數:該方法接受上述和以下所述的兩個參數:

  • collection:此參數保留要迭代的集合。
  • iteratee:此參數保存每次迭代調用的函數。

返回值:此方法返回新的展平的數組。

範例1:在這裏,const _ = require(‘lodash’)用於將lodash庫導入文件中。



javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
var user1 = ([35, 47, 58, 69, 94, 13, 72]); 
  
// Use of _.flatMap() method 
let gfg1 = _.flatMap(user1, function duplicate(n) { 
  return [n, n]; 
}) 
  
// Printing the output  
console.log(gfg1);

輸出:

[
  35, 35, 47, 47, 58, 58, 
  69, 69, 94, 94, 13, 13,
  72, 72
]

範例2:

javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
var user1 = ([3.5, 4.7, 5.8, 6.9, 9.4, 1.3, 7.2]); 
var user2 = ([3, 4, 5, 9, 9, 1, 7]); 
  
// Use of _.flatMap() method 
let gfg1 = _.flatMap(user1, function duplicate(n) { 
  return [n, n]; 
}) 
  
let gfg2 = _.flatMap(user2, function duplicate(n) { 
  return [n, n]; 
}) 
  
// Printing the output  
console.log(gfg1); 
console.log(gfg2);

輸出:

[
  3.5, 3.5, 4.7, 4.7, 5.8, 5.8, 
  6.9, 6.9, 9.4, 9.4, 1.3, 1.3,
  7.2, 7.2
]
[
  3, 3, 4, 4, 5, 5,
  9, 9, 9, 9, 1, 1,
  7, 7
]

注意:該代碼在常規JavaScript中不起作用,因為它需要安裝庫lodash。




相關用法


注:本文由純淨天空篩選整理自shivanisinghss2110大神的英文原創作品 Lodash _.flatMap() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。