egg的使用方法
Posted czq-0214
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了egg的使用方法相关的知识,希望对你有一定的参考价值。
1.route.js
router.get("/api/main/:id", controller.main.show);
controller.js
class MainController extends Controller { async show() { let { id } = this.ctx.params; // 获取路由参数 let { name } = this.ctx.query; // 获取用户入参 let options = { id: id, name: name } // 调用service方法 let info = await this.ctx.service.main.getInfo(options); // 拼装响应体 this.ctx.body = { code: 0, data: info }; this.ctx.status = 200; } } module.exports = MainController;
以上是关于egg的使用方法的主要内容,如果未能解决你的问题,请参考以下文章
Jupyter 安装返回“python setup.py egg_info”失败,错误代码为 1
python egg包类似jar,都是以zip为基础的,.egg结尾 的文件