我使用nodejs mongo驱动程序连接到mongodb实例。代码如下所示。
// Retrieve
var MongoClient = require('mongodb').MongoClient;
// Connect to the db
MongoClient.connect("mongodb://localhost:27017/exampleDb", function(err, db) {
...
如何监听连接中断的变化。如果连接断开,我想收到通知。 MongoDB nodejs驱动程序是否支持它?
答案 0 :(得分:0)
我找到了一种通过驱动程序执行此操作的方法,如下面的代码:
db.on('close', (event)=>{
});
我们可以收听关闭事件。