📜  Lodash _.flatMapDepth() 方法

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

Lodash _.flatMapDepth() 方法

Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、集合、字符串、对象、数字等。

_.flatMapDepth()方法通过 iteratee函数运行给定集合中的每个元素来创建一个扁平的值数组。它递归地将映射结果展平到给定的深度值。它类似于 _.flatMap() 方法。

句法:

_.flatMapDepth( collection, iteratee, depth )

参数:此方法接受三个参数,如上所述,如下所述:

  • 集合:它是要迭代的集合。
  • iteratee:它是每次迭代调用的函数。
  • depth:它是一个数字,指定最大递归深度。它是一个可选参数。默认值为 1。

返回值:此方法返回新的展平数组。

示例 1:

// Requiring the lodash library 
const _ = require("lodash"); 
      
// Original array 
var users = ([3, 4]);
  
// Using the _.flatMapDepth() method
let flat_map = _.flatMapDepth(users, duplicate, 2 )
function duplicate(n) {
  return [[[n, n]]];
}
  
// Printing the output 
console.log(flat_map);

输出:

[ [ 3, 3 ], [ 4, 4 ] ]

示例 2:

// Requiring the lodash library 
const _ = require("lodash"); 
      
// Original array 
var users = (['q', 'r', 't', 'u']);
  
// Using the _.flatMapDepth() method
let flat_map = _.flatMapDepth(users, duplicate, 2 )
function duplicate(n) {
  return [[[n, n]]];
}
  
// Printing the output 
console.log(flat_map);

输出:

[ [ 'q', 'q' ], [ 'r', 'r' ], [ 't', 't' ], ['u', 'u' ] ]