springboot+thymeleaf 纯后台渲染偷懒版分页

Posted 二刀

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot+thymeleaf 纯后台渲染偷懒版分页相关的知识,希望对你有一定的参考价值。

分页的样式就是这样的
cotroller这里这么写,传给view总页数,现在的页数,下一页,上一页的信息
 
1
    private String homeInfo(Model model) {
2
        Page<PostEntity> postEntities= postService.findAllByPage(0,10);
3
        model.addAttribute("posts",postEntities.getContent());
4
        int totalPage=postEntities.getTotalPages();
5
        int nowPage=postEntities.getPageable().getPageNumber()+1;
6
        int prePage=nowPage>2?nowPage-1:0;
7
        int nextPage=nowPage<totalPage?nowPage+1:0;
8
9
        model.addAttribute("totalPage",totalPage);
10
        model.addAttribute("nowPage",nowPage);
11
        model.addAttribute("prePage",prePage);
12
        model.addAttribute("nextPage",nextPage);
13
        return render("index");
14
    }

view版这么写
 
1
                <!--分页-->
2
                <div style="text-align: center">
3
                    <a class="pure-button" href="/">首页</a>
4
                    <a class="pure-button" th:if="${prePage != 0}" th:href="@{\'/page/\'+${prePage}}">上一页</a>
5
                    <a class="pure-button" th:if="${nextPage != 0}" th:href="@{\'/page/\'+${nextPage}}">下一页</a>
6
                    <a class="pure-button" th:href="@{\'/page/\'+${totalPage}}">尾页</a>
7
                </div>




以上是关于springboot+thymeleaf 纯后台渲染偷懒版分页的主要内容,如果未能解决你的问题,请参考以下文章

springboot中使用thymeleaf模板引擎

springboot框架中集成thymeleaf引擎,使用form表单提交数据,debug结果后台获取不到数据

spring boot thymeleaf 后台返回boolean类型的怎么接收

Springboot学习笔记8:Thymeleaf 模板引擎

在spring boot 项目中使用thymeleaf模板

Java项目:停车位管理系(java+SpringBoot+MybatisPlus+Thymeleaf+mysql+maven)