🎨 评论列表增加分页功能

This commit is contained in:
ronger 2023-03-24 15:21:33 +08:00
parent 883717856a
commit a01653e74e

View File

@ -67,8 +67,11 @@ public class ArticleController {
}
@GetMapping("/{idArticle}/comments")
public GlobalResult<List<CommentDTO>> commons(@PathVariable Integer idArticle) {
return GlobalResultGenerator.genSuccessResult(commentService.getArticleComments(idArticle));
public GlobalResult<PageInfo<CommentDTO>> commons(@PathVariable Integer idArticle, @RequestParam(defaultValue = "1") Integer page, @RequestParam(defaultValue = "10") Integer rows) {
PageHelper.startPage(page, rows);
List<CommentDTO> list = commentService.getArticleComments(idArticle);
PageInfo<CommentDTO> pageInfo = new PageInfo<>(list);
return GlobalResultGenerator.genSuccessResult(pageInfo);
}
@GetMapping("/drafts")