作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我现在正在做的是:
db.get(`SELECT * FROM '${message.guild.id}'`,(err, row) => {
console.log(row.channel);
});
我基本上想做的是,像这样:
let xyz = db.get(`SELECT * FROM '${message.guild.id}'`,(err, row) => {
return row.channel;
});
console.log(xyz);
最佳答案
您的 db
函数使用回调。回调与您的代码异步运行,因此 JS 不会等待它并会继续执行下面的代码。这意味着您将无法像您建议的那样分配变量。
您可以做的是创建一个您可以在代码中等待的异步函数:
async function getChannelFromID(db, id) {
return new Promise((resolve, reject) => {
db.get(`SELECT * FROM '${id}'`,(err, row) => {
if (err) reject(err); // I assume this is how an error is thrown with your db callback
resolve(row.channel);
});
});
}
// Now you can use the function like this
// (make sure you mark the function you call this in as async)
const xyz = await getChannelFromID(db, message.guild.id);
关于node.js - 如何将变量分配给 Node js中的sqlite查询的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65454450/
我是一名优秀的程序员,十分优秀!