
正文
关于express 连接 mongodb数据库报错
提示:扫一扫查出行【扫一扫了解最新限行尾号】
复制提示
关于express 连接 mongodb数据库报错nodejs 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.const mongoose = require('mongoose')mongoose.connect("mongodb://localhost:27017/study", {useNewUrlParser:true}, function(err){if(err){console.log('Connection Error:' + err)}else{console.log('Connection success!')}})
const mongoose = require('mongoose')mongoose.connect("mongodb://localhost:27017/study", {useNewUrlParser:true}, function(err){if(err){console.log('Connection Error:' + err)}else{console.log('Connection success!')}})







