On this page
我的分享列表
控制器:app/controller/share.js
js
// 分享列表
async list(){
const { ctx,app } = this;
const user_id = ctx.authUser.id
let list = await app.model.Share.findAndCountAll({
where:{
user_id
},
include:[{
model:app.model.File
}]
})
ctx.apiSuccess(list)
}
路由:app/router.js
js
router.get("/share/list", controller.share.list);