我想通过使用Async Await函数执行我在cql中编写的查询。
client.execute('select * from users).then(res => {
console.log('hello user');
}, err => {
console.log(err);
});
有人能告诉我这个查询到Async Await函数的确切翻译。
我解决了它,但我没有删除这篇文章,因为它可能会帮助某人。
app.get('/', async(req,res) => {
const res1 = await client.execute('select * from users);
var user = res1.rows[0];
console.log('successfull');
});