我是Node.js的新手,请尝试使用Node.js Mongodb驱动器API changeStream(https://mongodb.github.io/node-mongodb-native/3.0/api/ChangeStream.html#hasNext)。我不知道如何处理Node.js返回Promise。我的代码如下。
change_stream.hasNext().then(function(){
const change = change_stream.next();
console.log(change)
})
.catch(function (error) {
console.error('An error occurred', error);
});
输出为: 承诺{}
有人可以帮忙吗?谢谢!