本文主要是介绍mongoose DeprecationWarning: current URL string parser is deprecated,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
问题描述:
DeprecationWarning: current URL string parser is deprecated, and will be removed in a future versio n. To use the new parser, pass option { useNewUrlParser: true } to MongoClient.connect.
解决方法:
1 2 3 4 5 6 7 8 | var mongoose = require ( 'mongoose' ) ; DB_URL = 'mongodb://xxxx:27017/db_name' ; / * * * 连接 * / mongoose . connect ( DB_URL , { useNewUrlParser : true } ) ; |
加入 { useNewUrlParser: true }
则不再提示 DeprecationWarning: current URL string parser is deprecated, and will be removed in a future versio
n. To use the new parser, pass option { useNewUrlParser: true } to MongoClient.connect.
这篇关于mongoose DeprecationWarning: current URL string parser is deprecated的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!