gpt4 book ai didi

javascript - 将对象插入数组,给我空数组

转载 作者:行者123 更新时间:2023-12-03 05:49:36 25 4
gpt4 key购买 nike

大家好,我有这段代码,我从数据库中选择数据并希望将它们作为对象插入数组中:

conn2.query('SELECT date, action FROM actions WHERE ?', [{
issue_id: data.id
}], function(error, data2) {
if (error) {
showNotification('Error :' + error, 'danger', 'glyphicon glyphicon-tasks');
} else {
data2.forEach(function(data21) {
res.push({
"date": data21.date,
"description": data21.action
});
console.log(res);
});
}
});

问题是资源总是空的......如果我

console.log({"date": data21.date,"description": data21.action})

它给了我正确的对象....似乎推送没有写。

编辑:感谢大家,我无法解决这个问题,所以我使用了officegen,它很好地完成了工作

最佳答案

我认为你一定没有将 res 声明为数组对象分辨率=[]或者 data2 可能是空的

关于javascript - 将对象插入数组,给我空数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40205738/

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