gpt4 book ai didi

javascript - 无法添加数组索引

转载 作者:行者123 更新时间:2023-12-03 07:24:55 25 4
gpt4 key购买 nike

我想在使用 for 循环时为数组中的索引分配名称。我怎样才能做到这一点。请指导我。

// using in a http response
for (let i = 0; i <= 6; i++) {
this.sf.push({f(i) : // do something)
};

我想要得到类似的东西

f0: 1,
f1: 5,
f2: 9

最佳答案

你想将数组[1,5,9,...],变成对象{f0: 1, f1: 5, f2:9, ...}

如果是这样,您可以使用Array.reduce()进行转换:

const test = [1,5,9,10,15,25]; 

const result = test.reduce((accum, elem, index) => {
accum[`f${index}`] = elem;
return accum;

}, {});

更新:

事实证明,您可以使用相同的方法将其保留为数组:

const arrayResult = test.reduce((accum, elem, index) => {
accum[`f${index}`] = elem;
return accum;

}, []);

arrayResult; // [f0: 1, f0: 5, ...]

Source

关于javascript - 无法添加数组索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62165651/

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