Async使用Node.js在Cassandra中等待

问题描述 投票:2回答:1

我想通过使用Async Await函数执行我在cql中编写的查询。

client.execute('select * from users).then(res => {
    console.log('hello user');
}, err => {
    console.log(err);
});

有人能告诉我这个查询到Async Await函数的确切翻译。

node.js cassandra async-await
1个回答
4
投票

我解决了它,但我没有删除这篇文章,因为它可能会帮助某人。

app.get('/', async(req,res) => {
    const res1 = await client.execute('select * from users);
    var user = res1.rows[0];
    console.log('successfull');
});
© www.soinside.com 2019 - 2024. All rights reserved.