暂时没有提及到分页以及部分后续的部分,啥时候有空老师再补上几课?
搞明白了,这个问题提的好蠢,能删掉吗?
搞明白了,这个问题提的好蠢,能删掉吗?
2021-06-13
老师好,我参考了,admin 的用户管理的部分 ,能帮我分析下哪里有问题么?
//dao层
static async getArticleList (page, count1) { const { rows, count } = await ArticleModel.findAndCountAll({ offset: page * count1, limit: count1 }); return { item: rows, total: count }; }
接口部分
articleApi.get('/', async ctx => { const { rows, total } = await ArticleDao.getArticleList( ctx.get('query.page'), ctx.get('query.count') ); ctx.json({ items: rows, total, count: ctx.get('query.count'), page: ctx.get('query.page') }); });
接口部分调用是
async getRequestList() {
const currentPage = this.currentPage - 1
const res = await BlogModel.getBlogList({ count: this.pageCount, page: currentPage })
console.log('res', res)
},
count ,page 都定义了,
但是接口没有返回结果,总是说接口 找不到
举报