服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.flatMapDepth(collection, iteratee=_.identity, depth=1)

这种方法就像_.flatMap,不同的是它递归地将映射的结果平展到depth时间。

初始

4.7.0

参数
  1. collection (Array | Object):迭代的集合。
  2. [iteratee=_.identity] (Function):每次迭代调用的函数。
  3. [depth=1] (数字):最大递归深度。
返回

(数组):返回新的展平数组。

function duplicate(n) {
  return [[[n, n]]];
}
 
_.flatMapDepth([1, 2], duplicate, 2);
// => [[1, 1], [2, 2]]