快速初始化
手动初始化
- mkdir
- cd
- npm init -y
- cnpm i –save egg egg-bin
- 搭建目录结构
- app
- controller
- service
- router.js
- config 项目配置
- config.default.js 默认配置
- plugin.js 插件配置
- logs 日志文件 (项目生成)
- run 运行配置文件 (项目生成)
- app
- 配置脚本快捷启动命令
1 | { |
- npm run dev
egg - 路由表
1 | module.exports = function (app) { |
egg - 控制器
1 | const { Controller } = require("egg"); |
egg - 服务
在 app/service 目录下创建文件
this.ctx.service.<文件名>.<方法名>
1 | const { Service } = require("egg"); |
I'm so cute. Please give me money.
- Post link: https://blog.gaocaipeng.com/2019/08/25/teg4xb/
- Copyright Notice: All articles in this blog are licensed under unless otherwise stated.