gpt4 book ai didi

node.js - 如何在 express 应用程序中使用 promise ?

转载 作者:IT老高 更新时间:2023-10-28 23:07:02 30 4
gpt4 key购买 nike

我正在尝试在 app.get 函数中使用一个 Promise,该函数将运行一个查询,该查询将在一个 Promise 上运行。但问题是响应不等待 promise ,而只是响应。

知道代码应该如何让promise 存在于app.get 中吗?

最佳答案

app.get('/test', function (req, res) {
db.getData()
.then(function (data) {
res.setHeader('Content-Type', 'text/plain');
res.end(data);
})
.catch(function (e) {
res.status(500, {
error: e
});
});
});

关于node.js - 如何在 express 应用程序中使用 promise ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20020125/

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