运行node app.js时报错如下

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.

水晶_幕夜
浏览 5197回答 2
2回答

真泽鹏

用的mongoose?大致意思是连接mongodb数据库的链接解析器会在未来移除,要使用新的解析器,通过配置{ useNewUrlParser:true }来连接。mongoose.connect("mongodb://username:password@localhost:27017/dbname", { useNewUrlParser: true })

慕勒7123956

这是一个提醒,现在的这个url parser过期了,未来版本会被移除。如果想用新的解析,就给MongoDB的配置里面加上那一行
打开App,查看更多内容
随时随地看视频慕课网APP