1-1 安装egg-mongodb
cnpm i egg-mongodb -S
1-2 config/plugin.js
module.exports = {
...
mongodb:{
enable:true,
package:"egg-mongodb"
}
};
1-3 配置config/config.default.js
config.mongodb = {
app: true,
agent: false,
client:{
hosts:"124.70.134.133:10040",
db:"Student"
}
}
1-4 查询数据库
class MusicController extends Controller {
async index() {
const { ctx } = this;
var db = this.app.mongodb;
var res =await db.collection("user").find().toArray();
console.log(res)
}
}