分类:eggjs

eggjs

eggjs 读取数据库代码

eggjs 读取数据库代码
eggjs 读取数据库代码 效果,读取数据库前需要先连接数据库 路由配置 // 读取数据库 router.get('/api/user/:name', controller.user.info); controller 代码 // app/controller/use...

yekong 3年前 (2022-02-03) 喜欢

eggjs get方式获取参数

eggjs get方式获取参数
普通传参模式 除了常规模式还有严格的传参模式 控制器 async test() { const { ctx } = this; ctx.body = { code: 200, data: ctx.query, }; ...

yekong 3年前 (2022-01-21) 喜欢

egg.js 初始化安装

egg.js 初始化安装
初始化项目 mkdir egg-example && cd egg-example npm init egg --type=simple npm i 启动项目 npm run dev open http://localhost:7001 ...

yekong 3年前 (2022-01-19) 喜欢