博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
freemarker 分页逻辑
阅读量:6251 次
发布时间:2019-06-22

本文共 1378 字,大约阅读时间需要 4 分钟。

<#--  分页组件    需要传入的参数 pageUrl ,用来生成的html地址,在pageUrl中必须有{page}在生成html地址的时候会自动把页码给赋值上去。页码起始值为1    @pageNum 最大显示页 默认9    @beforPage 前显示页 默认3    @afterPage  后显示页 默认3    @countPage 总页数   必须传入    @currentPage 当前页 必须传入    @currentPageClass 选中页码传递的样式,实现为直接将值贴给元素     @pageUrl  请求地址模板 ,内容中必须含有{page}用来替换页码 --><#assign pageNum = pageNum!9><#assign beforPage = beforPage!3><#assign afterPage = afterPage!3><#assign countPage =countPage!page.countPageNumber><#assign currentPage = currentPage!page.currentNumber><#assign currentPageClass = currentPageClass!"class='thispage'"><#assign pageUrl = pageUrl><#-- 分页地址 --><#function getPageUrl page> <#return pageUrl?replace('{page}',page)>
<#if (countPage > 1)> <#if currentPage != 1>
上一页
      <#if (countPage > pageNum)><#-- 总页数大于最大显示页 --> <#if (pageNum > currentPage)><#-- 当前页小于显示页 --> <#list 1..pageNum as index> ${currentPageClass}
>${index}
<#else> 1... <#list currentPage-beforPage..currentPage + afterPage as index> <#if (index > 0) && (index < countPage)> ${currentPageClass}
>${index}
  <#if (currentPage < countPage - afterPage)>...
<#if currentPage == countPage>${currentPageClass}
>${countPage}
<#else><#-- 总页数小于显示页 --> <#list 1..countPage as index> ${currentPageClass}
>${index}
<#if countPage != currentPage> 下一页

转载于:https://my.oschina.net/wjgood/blog/97489

你可能感兴趣的文章
Android 6.0指纹识别App开发案例
查看>>
正文提取算法
查看>>
轻松学PHP
查看>>
Linux中的网络监控命令
查看>>
this的用法
查看>>
windows下安装redis
查看>>
CentOS7 yum 安装git
查看>>
启动日志中频繁出现以下信息
查看>>
httpd – 对Apache的DFOREGROUND感到困惑
查看>>
分布式锁的一点理解
查看>>
idea的maven项目,install下载重复下载本地库中已有的jar包,而且下载后jar包都是lastupdated问题...
查看>>
2019测试指南-web应用程序安全测试(二)指纹Web服务器
查看>>
树莓派3链接wifi
查看>>
js面向对象编程
查看>>
Ruby中类 模块 单例方法 总结
查看>>
jQuery的validate插件
查看>>
5-4 8 管道符 作业控制 shell变量 环境变量配置
查看>>
Enumberable
查看>>
开发者论坛一周精粹(第五十四期) 求购备案服务号1枚!
查看>>
validate表单验证及自定义方法
查看>>