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.
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.
2019-02-20
修改代碼片段
mongoose.connect('地址',{useNewUrlParser:true},function(err){
????if(err){
????????console.log('Connect error:' + err)
????}else{
? ? ????console.log('Connect success' )
????}
})