🎨 评论列表增加分页功能

🎨 评论列表增加分页功能
This commit is contained in:
ronger 2023-03-24 18:56:41 +08:00 committed by GitHub
commit 2f8f38c085
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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