前后端开发分页操作

基于spring boot+vue的分页实现

1.在pom.xml中添加依赖

com.github.pagehelper
pagehelper-spring-boot-starter
1.2.5

  1. 在application.properties中添加配置

pagehelper.helperDialect=mysql
pagehelper.reasonable=false
pagehelper.supportMethodsArguments=true
pagehelper.params=count=countSql

  1. 在Controller层中使用
    @GetMapping(value = "/*")
    public ResponseResult getAll(@RequestParam(defaultValue = "1") int pageNo, @RequestParam(defaultValue = "10") int pageSize) {
    PageHelper.startPage(pageNo,pageSize);
    //pageNo是页数,默认为1;pageSize是数量,默认为10
    //方法自写
    return ;
    }

前端

  1. 使用hello uni-app组件uni-load-more.vue


你可能感兴趣的:(前后端开发分页操作)