egg-mongoose提示 { useNewUrlParser: true } to MongoClient.connect 如何解决

发布于 6 年前 作者 zdingfeng 2426 次浏览 来自 分享

egg-mongoose提示下面错误。

(node:14220) DeprecationWarning: current URL string parser is deprecated, and will be removed in a future version. To use the new parser, pass option { useNewUrlParser: true } to MongoClient.connect.

最新的mongodb4.x要求连接数据库的时候加上 { useNewUrlParser: true }

如何解决?

1 回复

配置mongose连接mongodb数据库的时候可以指定参数


  exports.mongoose = {
    client: {
      url: 'mongodb://127.0.0.1/eggxiaomi',
      options: {
        useNewUrlParser: true,
      }      
    }
  }
回到顶部