为了账号安全,请及时绑定邮箱和手机立即绑定

如何在Javascript中使用给定的回调来展平数组?

如何在Javascript中使用给定的回调来展平数组?

幕布斯6054654 2021-08-26 17:31:14
该函数必须将指定数组的每个元素投影到一个序列并将结果序列展平为一个数组。我的函数必须根据给定的选择器函数 ( childrenSelector)返回扁平数组,但在应用slice()函数时遇到问题。当应用切片作为选择器函数时,它说类型错误:x.slice 不是函数function flattenArray(arr, childrenSelector) {  return arr.reduce((accumArr, currVal) => {      console.log(currVal);      return Array.isArray(currVal)         ? accumArr.concat(currVal.map(childrenSelector))         : accumArr.concat(childrenSelector(currVal))    }, []  );}flattenArray([[11, 12, 13, 14, 15], [21, 22, ,23, 24, 25], [31, 32, 34, 35]], x => x.slice(0, 2))
查看完整描述

1 回答

?
临摹微笑

TA贡献1982条经验 获得超2个赞

问题是,当迭代外部数组时,条件


Array.isArray(currVal)

满足,所以


accumArr.concat(currVal.map(childrenSelector))

运行 whencurrVal是一个数字数组。但是数字没有.slice方法。


相反,呼叫childrenSelector上currVal,没有.map(使得阵列切片):


function flattenArray(arr, childrenSelector) {

  return arr.reduce((accumArr, currVal) => {

    return accumArr.concat(childrenSelector(currVal));

  }, []);

}


console.log(

  flattenArray([

    [11, 12, 13, 14, 15],

    [21, 22, , 23, 24, 25],

    [31, 32, 34, 35]

  ], x => x.slice(0, 2))

);

您还可以使用flatMap:


const flattenArray = (arr, childrenSelector) => arr.flatMap(childrenSelector);


console.log(

  flattenArray([

    [11, 12, 13, 14, 15],

    [21, 22, , 23, 24, 25],

    [31, 32, 34, 35]

  ], x => x.slice(0, 2))

);


查看完整回答
反对 回复 2021-08-26
  • 1 回答
  • 0 关注
  • 155 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信