1. 程式人生 > >mongoose的 useNewUrlParser 警告解決辦法

mongoose的 useNewUrlParser 警告解決辦法

報錯資訊如下

     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.

大致意思就是說:當前的URL字串解析器被棄用然後也提供瞭解決方案 讓你在選項裡面{useNewUrlParser: true}

程式碼如下:

mongoose.connect('mongodb://127.0.0.1:27017/admin', { useNewUrlParser: true })