lodash的_.chunk函数可以将数组按照数量分成若干组, 例如: const data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]; const groupByNum = 3; 会分成 [ [1,2,3], [4,5,6], [7,8,9], [10,11] ] 下面是一种 map + slice 的写法 const result = Array.apply(null, { length: Math.ceil(data.length / groupByNum…