DeprecationWarning:現在のURL文字列パーサーは非推奨であり、将来のバージョンで削除される予定です



Deprecationwarning Current Url String Parser Is Deprecated



ノード接続Mongooseは警告をスローします:
マングースバージョン: '^ 5.2.12'

(node:6592)DeprecationWarning:現在のURL文字列パーサーは非推奨であり、将来のバージョンで削除される予定です。新しいパーサーを使用するには、オプション{useNewUrlParser:true}をMongoClient.connectに渡します。
//現在のURL文字列パーサーは非推奨になり、解決策を提供します。オプション{useNewUrlParser:true}を入力してください



解決:

- mongoose.connect('mongodb://127.0.0.1/models') + mongoose.connect('mongodb://127.0.0.1/models',{ useNewUrlParser: true })
その他の問題

(node:6825)DeprecationWarning:collection.countは非推奨であり、将来のバージョンで削除される予定です。代わりにcollection.countDocumentsまたはcollection.estimatedDocumentCountを使用してください



使用する collection.countDocuments() 代替方法 collection.count()
クリックして、ドキュメントcollection.countDocuments()を表示します。