标签: MongoDB

7 篇文章

thumbnail
MongoDB配置账户密码连接报Authentication failed.
当我们MongoDB启用auth认证的时候,程序连接数据库时报 MongoServerError: Authentication failed. 但是呢,url、数据库名称、账号、密码都正确,为什么会报这个认证错误呢? 首先去服务器查看MongoDB的日志,日志显示: UserNotFound: Could not find user xxx@ad…
thumbnail
Mongoose二级连表查询
首先定义两个Schema,然后 model ; DB.js // 分类 let CategorieSchema = new mongoose.Schema({     "name" : String,     "img" : String,     "date": Date }); CategorieSchema.index({ "date": 1…