gpt4 book ai didi

javascript - 基于数组的索引将项目添加到对象的数组中

转载 作者:行者123 更新时间:2023-11-28 14:33:00 25 4
gpt4 key购买 nike

我正在抓取一个网站,并且有一个正在循环的数字数组:

const arr = [1,2,3,1,2,4,5,6,7];

它们对应于不同球队的赢/输/平局:

数组中的第一项为获胜,第二项为平局,第三项为失败,第四项为获胜,第五项为平局,第六项为失败,依此类推

我如何循环这些,以便我得到如下所示的内容:

const teams = [{
won: 1,
draw: 2,
lost: 3
},{
won: 1,
draw: 2,
lost: 4
},{
won: 5,
draw: 6,
lost: 7
}];

我尝试了类似以下的操作,但它没有按我的预期工作。

   const arr = [1, 2, 3, 1, 2, 4, 5, 6, 7];

const newArr = [];

arr.forEach((item, index => {
if (index % 0 === 0) {
newArr.push({
won: item
});

} else if (index % 1 === 0) {
newArr.push({
draw: item
});
} else {
newArr.push({
lost: item
});
}
});

最佳答案

不幸的是,使用像 forEach 这样的数组方法效果不佳,因为您需要将多个数组元素合并到一个对象中。这是可能的,但会有点困惑。如果使用 for 循环可能会更清楚:

const arr = [1,2,3,1,2,4,5,6,7];
const teams = [];
for (let i = 0; i < arr.length; i += 3) {
teams.push({
won: arr[i],
draw: arr[i + 1],
lost: arr[i + 2],
});
}

console.log(teams);

关于javascript - 基于数组的索引将项目添加到对象的数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50788325/

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