gpt4 book ai didi

node.js - 在Express中使用多个MongoDB查询进行异步/等待

转载 作者:太空宇宙 更新时间:2023-11-04 01:38:22 26 4
gpt4 key购买 nike

我有一个相当简单的CRUD应用程序,它将两个查询的结果呈现到一页上。一旦使它“起作用”,就会出现问题是该页面需要刷新才能显示结果。首次加载时,未显示任何结果。

我发现这是Node异步性质的问题/症状。我一直在尝试通过使用async / await来解决此问题,并且经过数小时的混乱工作后,我觉得我已经很接近解决方案了,但是还没有解决-我仍然需要手动刷新才能显示/在.ejs页面上呈现结果。

代码:

var entries = [];
var frontPageGoals = [];

app.get('/entries', async (req,res) => {
if (req.session.password) {

const entriesColl = await
db.collection('entries')
.find()
.sort({date: -1})
.toArray((err, result) => {
if (err) { console.log(err) }
else {
for (i=0; i<result.length; i++) {
entries[i] = result[i];
}
}
});

const goalsColl = await
db.collection('goals')
.find()
.toArray((err, result) => {
if (err) {console.log(err)}
else {
for (i=0; i<result.length; i++) {
frontPageGoals[i] = result[i];
}
}
});

res.render('index.ejs', {entries: entries, frontPageGoals: frontPageGoals});
}
else {
res.redirect('/');
}
});


现在,我可以在这里设想一些问题,但是老实说,我只是想解决这个问题。例如,我确定在页面渲染位于实际异步功能之外时,包含将要传递的结果的空列表是有问题的。但是在尝试将它们移动到异步区域内的十几个不同位置之后……仍然没有骰子。

任何帮助将不胜感激!这基本上是我需要为此应用完成的最后一件大事。

最佳答案

我不确定您的数据库驱动程序是否100%可靠,但是假设toArray()返回一个Promise(在默认的mongodb驱动程序中会这样做),await实际上会返回您在回调函数中期望的值 在您的情况下,或者在发生错误的情况下(您希望在回调中将其作为 result),将引发该错误,从而迫使您使用 err块,在这种情况下,您将只使用 在catch块中,因为您没有进行任何处理

这是更新后的代码:

app.get("/entries", async (req, res) => {
if (req.session.password) {
try {
const entries = await db
.collection("entries")
.find()
.sort({ date: -1 })
.toArray();

const frontPageGoals = await db
.collection("goals")
.find()
.toArray();

res.render("index.ejs", {
entries: entries,
frontPageGoals: frontPageGoals
});
} catch (err) {
console.log(err);
}
} else {
res.redirect("/");
}
});


编辑

但是,如果您不了解promises-基本上 try-catch基本上是promises-,并且只想使用回调(不建议使用)来实现,则您只需在回调中发送响应,然后将第二个查询嵌套在第一个查询的回调,下面是代码,其中包含一些注释,希望可以帮助您:

app.get("/entries", (req, res) => {
if (req.session.password) {
// First query
db.collection("entries")
.find()
.sort({ date: -1 })
.toArray((err, entryResult) => {
if (err) {
console.log(err);
} else {
// In the callback of the first query, so it will
// execute 2nd query, only when the first one is done
db.collection("goals")
.find()
.toArray((err, frontPageResult) => {
if (err) {
console.log(err);
} else {
// In the callback of the 2nd query, send the response
// here since both data are at hand
res.render("index.ejs", {
entries: entryResult,
frontPageGoals: frontPageResult
});
}
});
}
});
} else {
res.redirect("/");
}
});



我已经删除了 console.log(err)关键字,因为您不再需要它
我重命名了回调参数,而不仅仅是 async/await,因为这两个回调将具有相同的参数名称,并且您必须将其存储在temp变量中

关于node.js - 在Express中使用多个MongoDB查询进行异步/等待,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53805076/

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