使用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

相关文章:

  • 2022-12-23
  • 2021-06-10
  • 2022-12-23
  • 2022-12-23
  • 2021-08-15
  • 2021-07-16
  • 2021-11-19
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-23
  • 2021-10-10
  • 2021-05-15
相关资源
相似解决方案