标签:wait code stat r.js let 入参 方法 main pre
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;
标签:wait code stat r.js let 入参 方法 main pre
原文地址:https://www.cnblogs.com/czq-0214/p/10536613.html