var MongoClient = require('mongodb').MongoClient;
var url = 'mongodb://localhost:27017/mydb'
MongoClient.connect(url, function(err,db) {
if (err) {
console.log("err")
} else {
console.log("Database Connected")
}
})
.connect在VS代码中被删除
错误显示在VS代码终端
Windows 8.1专业版的版本4.2
1条答案
按热度按时间polhcujo1#
有时候我也会遇到这种情况。我现在不使用连接功能(macOS)。试试这个:
并像这样使用它:
await db.collection('movies').countDocuments();