博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
freemarker 分页逻辑
阅读量:6250 次
发布时间: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

你可能感兴趣的文章
MatLab实现FFT与功率谱
查看>>
答《漫话ID》中的疑问:UniqueID和ClientID的来源
查看>>
【转】Asp.net控件开发学习笔记整理篇 - 服务器控件生命周期
查看>>
Linux下的shell编程(一)BY 四喜三顺
查看>>
javascript一些小技巧
查看>>
I00024 出钱买羽
查看>>
linux下文件的一些文件颜色的含义
查看>>
websotrm注册码
查看>>
迭代器(Iterable)和for..in..的三种协议
查看>>
判断浏览器是否为顶层窗口
查看>>
数据结构化与保存
查看>>
跨域iframe高度自适应(兼容IE/FF/OP/Chrome)
查看>>
服务器设计笔记(3)-----消息队列
查看>>
poj 1797 Heavy Transportation(最短路径Dijkdtra)
查看>>
基于WinDbg的内存泄漏分析
查看>>
气象预警采集及推送
查看>>
【SSH网上商城项目实战29】使用JsChart技术在后台显示商品销售报表
查看>>
python 基础复习 09 之基础函数
查看>>
Extjs 4
查看>>
Java内存模型(JMM)以及 垃圾回收机制 小结
查看>>