On this page
分类列表
控制器:app/controller/category.js
js
async index() {
const { ctx, app } = this;
let rows = await app.model.Category.findAll();
ctx.apiSuccess(rows);
}
路由:app/router.js
js
router.get("/category", controller.category.index);