【发布时间】:2018-06-08 19:07:54
【问题描述】:
我想使用 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