mongoose连接数据库(connect函数)
数据库的连接
const mongoose = require('mongoose')
// 如果数据库(database)不存在就会创建
mongoose.connect('mongodb://localhost/eg',
{ useNewUrlParser: true, useUnifiedTopology: true },
function (err) {
if (err)
console.log('连接数据库失败');
else {
console.log('连接数据库成功');
}
})
- mongoose.connect函数
function connect(
uris: string,
options: mongoose.ConnectOptions,
callback: (err: MongoError) => void
)
//Opens the default mongoose connection.
- 函数返回promise
- uris:'mongoose://username:password@ipadress:port/databaseName'
- options:其中的设置可以覆盖uris中的设置