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.
運(yùn)行出現(xiàn)這個(gè)警告
運(yùn)行出現(xiàn)這個(gè)警告
2018-10-23
舉報(bào)
2019-02-20
修改代碼片段
mongoose.connect('地址',{useNewUrlParser:true},function(err){
????if(err){
????????console.log('Connect error:' + err)
????}else{
? ? ????console.log('Connect success' )
????}
})