使用Mongodb数据库连接时出现数据库警告信息:
current Server Discovery and Monitoring engine is deprecated, and will be removed in a future versio
#添加下面信息,运行便正常了。
mongoose.connection.on(“error”, function (error) {
console.log(“数据库连接失败:” + error);
});
mongoose.connection.on(“open”, function () {
console.log("------数据库连接成功!------");
});
current Server Discovery and Monitoring engine is deprecated, and will be removed in a future versio

相关文章: