gpt4 book ai didi

javascript - 将新对象添加到数组

转载 作者:行者123 更新时间:2023-11-30 12:13:19 25 4
gpt4 key购买 nike

我正在努力将新对象插入数组。目前下面的代码似乎只是简单地覆盖了一个对象。我可以看到我想通过控制台推送到数组的数据,但它只是不存储新对象。有什么想法吗?

fs.readFile('check.json', function (err, check) {
if (err) throw err;
var newData = JSON.parse(check);

var tempData =[];
for (var index=0; index<newData.length; index++){
tempData.push(newData);
}
tempData = newData;
});

最佳答案

迭代数组然后将对象推送给它们的典型方法是这样的

var tempData =[];
for (var index=0; index<newData.length; index++){
tempData.push(newData[index]);
// ^add index
}
//tempData = newData; remove assignment which overwrites array

关于javascript - 将新对象添加到数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33158784/

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