2018-08,本文適用於對egg有興趣想要了解的同窗完整項目代碼:https://github.com/NameHewei/node-eggnode
項目主要文件目錄結構git
|—— app |—— controller |—— cook.js |—— model |—— cook.js |—— router.js |—— config |—— config.default.js |—— plugin.js |—— package.json |—— README.md
官網: https://eggjs.org/zh-cn/github
啓動項目mongodb
本文主要是以搭建一個鏈接mongoDB的後端,以提供api接口數據庫
1.引入數據庫插件,在plugin.js文件中添加以下代碼npm
exports.mongoose = { enable: true, package: 'egg-mongoose', };
2.在config.default.js中添加以下配置json
config.mongoose = { client: { url: 'mongodb://127.0.0.1:27017/database-name', }, }
在model文件下添加,cook.js 文件後端
module.exports = app => { const mongoose = app.mongoose; const Schema = mongoose.Schema; const CookeSchema = new Schema({ _id: { type: Schema.Types.ObjectId }, name: { type: String }, img: { type: String }, step: { type: String } }, { versionKey: false }); return mongoose.model('cooks', CookeSchema); }
注意若是使用mongoDB中的_id時type的類型,以及如何去掉__v 版本鎖字段。api
在controller文件夾下添加,cook.js文件app
const Controller = require('egg').Controller; class HomeController extends Controller { async list() { this.ctx.response.body = { result: await this.ctx.model.Cook.find({}, {'_id': 0}) }; } async listOne() { const { id } = this.ctx.params this.ctx.body = { result: await this.ctx.model.Cook.find({ '_id': id }, {'_id': 0}) }; } } module.exports = HomeController;
這裏用於獲取數據庫中的數據
module.exports = app => { const { router, controller } = app; router.get('/cook/', controller.cook.list); router.get('/cook/:id', controller.cook.listOne); };
確保數據庫能鏈接成功後,即可以啓動項目。
本文只是輔助介紹快速搭建一個基本的egg項目,具體內容請參考:https://eggjs.org/
如有疑問或錯誤,請留言,謝謝! Github blog issues