gpt4 book ai didi

javascript - 有没有办法从数组中提取对象并放入新数组中?

转载 作者:行者123 更新时间:2023-11-30 08:22:05 25 4
gpt4 key购买 nike

给定:

myObjArray = [ [ [ [Object] ] ], [ [ [Object] ] ], [ [ [Object] ] ] ]

期望的结果

[{Object},{Object},{Object}]

那么有没有办法将 [Object(s)] 从数组中拉出并放入一个新数组中?

最佳答案

array.prototype.map 与递归函数一起使用,从嵌套数组中检索对象:

var arr = [ [ [ [ { prop: 'val1' }] ] ], [ [ [{ prop: 'val2' }] ] ], [ [ [{ prop: 'val3' }] ] ] ];

var res = arr.map(getObject);

function getObject(o) {
return Array.isArray(o) ? getObject(o[0]) : o;
}
console.log(res);

关于javascript - 有没有办法从数组中提取对象并放入新数组中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51768545/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com