ThinkPHP分页用异步来做,玩转分页类!
具体为什么用异步来做分页我就不多说了!
用异步来做分页,主要还是看分页类怎么玩!
方便管理,还是把Ajax分页作为一个工具来使用:
同样新建工具类:
多次尝试,最终修改好的分页类是这样的:(我自己使用还是比较爽的)
- <?php
- namespace Components;
- class AjaxPage {
- public $firstRow; // 起始行数
- public $listRows; // 列表每页显示行数
- public $parameter; // 分页跳转时要带的参数
- public $totalRows; // 总行数
- public $totalPages; // 分页总页面数
- public $rollPage = 11;// 分页栏每页显示的页数
- public $lastSuffix = true; // 最后一页是否显示总页数
- private $p = 'p'; //分页参数名
- private $url = ''; //当前链接URL
- private $nowPage = 1;
- // 分页显示定制
- private $config = array(
- 'header' => '<span class="rows">共 %TOTAL_ROW% 条记录</span>',
- 'prev' => '<<',
- 'next' => '>>',
- 'first' => '1...',
- 'last' => '...%TOTAL_PAGE%',
- 'theme' => '%FIRST% %UP_PAGE% %LINK_PAGE% %DOWN_PAGE% %END%',
- );
- /**
- * 架构函数
- * @param array $totalRows 总的记录数
- * @param array $listRows 每页显示记录数
- * @param array $parameter 分页跳转的参数
- */
- public function __construct($totalRows, $listRows=20,$ajax_func, $parameter = array()) {
- C('VAR_PAGE') && $this->p = C('VAR_PAGE'); //设置分页参数名称
- /* 基础设置 */
- $this->totalRows = $totalRows; //设置总记录数
- $this->ajax_func = $ajax_func;
- $this->listRows = $listRows; //设置每页显示行数
- $this->parameter = empty($parameter) ? $_GET : $parameter;
- $this->nowPage = empty($_GET[$this->p]) ? 1 : intval($_GET[$this->p]);
- $this->nowPage = $this->nowPage>0 ? $this->nowPage : 1;
- $this->firstRow = $this->listRows * ($this->nowPage - 1);
- }
- /**
- * 定制分页链接设置
- * @param string $name 设置名称
- * @param string $value 设置值
- */
- public function setConfig($name,$value) {
- if(isset($this->config[$name])) {
- $this->config[$name] = $value;
- }
- }
- /**
- * 生成链接URL
- * @param integer $page 页码
- * @return string
- */
- private function url($page){
- return str_replace(urlencode('[PAGE]'), $page, $this->url);
- }
- /**
- * 组装分页链接
- * @return string
- */
- public function show() {
- if(0 == $this->totalRows) return '';
- /* 生成URL */
- $this->parameter[$this->p] = '[PAGE]';
- $a = u(__SELF__);
- $b = substr($a,15,strlen($a));
- $this->url = U($b, $this->parameter);
- /* 计算分页信息 */
- $this->totalPages = ceil($this->totalRows / $this->listRows); //总页数
- if(!empty($this->totalPages) && $this->nowPage > $this->totalPages) {
- $this->nowPage = $this->totalPages;
- }
- /* 计算分页临时变量 */
- $now_cool_page = $this->rollPage/2;
- $now_cool_page_ceil = ceil($now_cool_page);
- $this->lastSuffix && $this->config['last'] = $this->totalPages;
- //上一页
- $up_row = $this->nowPage - 1;
- //$up_page = $up_row > 0 ? '<a href="javascript:' . $this->ajax_func.'('.$up_row.')" class="prev">' . $this->config['prev'] . '</a>' : '<a href="javascript:;" class="prev">' . $this->config['prev'] . '</a>';
- $up_page = $up_row > 0 ? '<a href="javascript:;" class="prev">' . $this->config['prev'] . '</a>' : '<a href="javascript:;" class="prev">' . $this->config['prev'] . '</a>';
- //下一页
- $down_row = $this->nowPage + 1;
- //$down_page = ($down_row <= $this->totalPages) ? '<a href="javascript:' . $this->ajax_func.'('.$down_row.')" class="next">' . $this->config['next'] . '</a>' : '<a class="next">' . $this->config['next'] . '</a>';
- $down_page = ($down_row <= $this->totalPages) ? '<a href="javascript:;" class="next">' . $this->config['next'] . '</a>' : '<a href="javascript:;" class="next">' . $this->config['next'] . '</a>';
- //第一页
- $the_first = '';
- if($this->totalPages > $this->rollPage && ($this->nowPage - $now_cool_page) >= 1){
- $the_first = '<a href="javascript:' . $this->ajax_func . '(1);" class="com">' . $this->config['first'] . '</a>';
- }
- //最后一页
- $the_end = '';
- if($this->totalPages > $this->rollPage && ($this->nowPage + $now_cool_page) < $this->totalPages){
- $the_end = '<a href="javascript:' . $this->ajax_func . '('.$this->totalPages.');" class="com">' . $this->config['last'] . '</a>';
- }
- //数字连接
- $link_page = "";
- for($i = 1; $i <= $this->rollPage; $i++){
- if(($this->nowPage - $now_cool_page) <= 0 ){
- $page = $i;
- }elseif(($this->nowPage + $now_cool_page - 1) >= $this->totalPages){
- $page = $this->totalPages - $this->rollPage + $i;
- }else{
- $page = $this->nowPage - $now_cool_page_ceil + $i;
- }
- if($page > 0 && $page != $this->nowPage){
- if($page <= $this->totalPages){
- $link_page .= '<a href="javascript:' . $this->ajax_func . '(' . $page . ');" class="com">' . $page . '</a>';
- }else{
- break;
- }
- }else{
- if($page > 0){
- $link_page .= '<a href="javascript:' . $this->ajax_func . '(' . $page . ');" class="active com">' . $page . '</a>';
- }
- }
- }
- //替换分页内容
- $page_str = str_replace(
- array('%HEADER%', '%NOW_PAGE%', '%UP_PAGE%', '%DOWN_PAGE%', '%FIRST%', '%LINK_PAGE%', '%END%', '%TOTAL_ROW%', '%TOTAL_PAGE%'),
- array($this->config['header'], $this->nowPage, $up_page, $down_page, $the_first, $link_page, $the_end, $this->totalRows, $this->totalPages),
- $this->config['theme']);
- return "{$page_str}";
- }
- }
接下来写控制器:
- <?php
- namespace Home\Controller;
- use Think\Controller;
- class LingdaoController extends Controller {
- public function index(){
- //分页处理
- $count = M('document')->count();
- //$page = new \Think\Page($count,2);
- $page = new \Components\AjaxPage($count,5,'show');
- $show = $page->show();
- $list = M('document')->limit($page->firstRow.','.$page->listRows)->select();
- $this->assign('list',$list);
- $this->assign('page',$show);
- $this->display();
- }
- public function ajaxpage(){
- //分页处理
- $count = M('document')->count();
- //$page = new \Think\Page($count,2);
- $page = new \Components\AjaxPage($count,5,'show');
- $show = $page->show();
- $list = M('document')->limit($page->firstRow.','.$page->listRows)->select();
- foreach($list as $k => $v){
- echo '<li>'.$k.'=='.$v['title'].'</li>';
- }
- }
- }
经过多次尝试,最终视图调整为这样:
- <!doctype html>
- <html>
- <head>
- <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'>
- <title>标题</title>
- <meta name='Keywords' content=''>
- <meta name='Description' content=''>
- <style type='text/css'>
- *{margin:0px; padding:0px; list-style-type:none; text-decoration:none; font-family:"微软雅黑";}
- ul{width: 500px; height: 120px; margin: 60px auto;}
- /* 分页样式 */
- div.listNext{text-align: center; font-size:0;}
- div.listNext a{font-size:14px; width: 35px; height:35px; display:inline-block; border:1px solid red; border-right:none; text-align: center; line-height: 35px;}
- div.listNext a.next{border-right:1px solid red;}
- div.listNext a.text{cursor:text;}
- div.listNext a.active{background:#ddd;}
- </style>
- </head>
- <body>
- <ul class='list'>
- <foreach name='list' item='v' key='i'>
- <li>{$i}=={$v.title}</li>
- </foreach>
- </ul>
- <div class='listNext'>{$page}</div>
- <script src="https://cdn.bootcss.com/jquery/1.8.3/jquery.min.js"></script>
- <script>
- function show(id){
- var url = "{:U('Lingdao/ajaxpage')}";
- $.get(url,{'p':id}, function(data){
- $('ul.list').html(data);
- });
- }
- (function(){
- var oIndex = 0;
- var oAcomSize = $('div.listNext>a.com').size();
- $('div.listNext>a.prev').addClass('text');
- $('div.listNext>a.com').click(function(){
- oIndex = $(this).index();
- if(oIndex != 1){$('div.listNext>a.prev').removeClass('text');}else{$('div.listNext>a.prev').addClass('text');};
- if(oIndex != oAcomSize){$('div.listNext>a.next').removeClass('text');}else{$('div.listNext>a.next').addClass('text');};
- $(this).addClass('active').siblings('a.com').removeClass('active');
- });
- // prev click
- $('div.listNext>a.prev').click(function(){
- $('div.listNext>a.com').each(function(i,e){if($(this).hasClass('active')){oIndex = i+1;};});
- oIndex = oIndex - 1;
- $('div.listNext>a.next').removeClass('text');
- if(oIndex == 1){$(this).addClass('text');};
- if(oIndex == 0){oIndex = 0; return false;};
- $('div.listNext>a').eq(oIndex).addClass('active').siblings('a.com').removeClass('active');
- $(this).attr('href','javascript:show('+oIndex+');');
- });
- // next click
- $('div.listNext>a.next').click(function(){
- $('div.listNext>a.com').each(function(i,e){if($(this).hasClass('active')){oIndex = i+1;};});
- oIndex = oIndex + 1;
- if(oIndex == oAcomSize){$(this).addClass('text');};
- if(oIndex == oAcomSize+1){oIndex = oAcomSize; return false;};
- $('div.listNext>a').eq(oIndex).addClass('active').siblings('a.com').removeClass('active');
- $(this).attr('href','javascript:show('+oIndex+');');
- });
- })();
- </script>
- </body>
- </html>
ThinkPHP分页用异步来做,玩转分页类!的更多相关文章
- thinkphp简洁、美观、靠谱的分页类
我们要实现如下图分页效果 这个分页类是在thinkphp框架内置的分页类的基础上修改而来:原分页类的一些设计,在实际运用中感觉不是很方便: 1.只有一页内容时不显示分页: 2.原分页类在当前页是第一页 ...
- thinkphp结合云之讯做短信验证码
thinkphp结合云之讯做短信验证码先去云之讯注册账号 网址http://www.ucpaas.com/ 注册云之讯平台账号,即可免费获得10元测试费用测试够用啦 解压附件到 ThinkPHP\Li ...
- Thinkphp+Ajax带关键词搜索列表无刷新分页实例
Thinkphp+Ajax带关键词搜索列表无刷新分页实例,两个查询条件,分页和搜索关键字,懂的朋友还可以添加其他分页参数. 搜索#keyword和加载内容区域#ajax_lists <input ...
- Thinkphp源码分析系列(二)–引导类
在上一章我们说到,ThinkPHP.php在设置完框架所需要的变量和调教好环境后,在最后调用了 Think\Think::start(); 即Think命名空间中的Think类的静态方法start ...
- PHP分页初探 一个最简单的PHP分页代码的简单实现
PHP分页代码在各种程序开发中都是必须要用到的,在网站开发中更是必选的一项. 要想写出分页代码,首先你要理解SQL查询语句:select * from goods limit 2,7.PHP分页代码核 ...
- 分页技巧_抽取出公共的分页用的Service方法
分页技巧_抽取出公共的分页用的Service方法 TopicAction.java ForumAction.java 放在父类中DaoSupport.java DaoSupportImpl.java ...
- 63. Unique Paths II(中等, 能独立做出来的DP类第二个题^^)
Follow up for "Unique Paths": Now consider if some obstacles are added to the grids. How m ...
- 重复造轮子,编写一个轻量级的异步写日志的实用工具类(LogAsyncWriter)
一说到写日志,大家可能推荐一堆的开源日志框架,如:Log4Net.NLog,这些日志框架确实也不错,比较强大也比较灵活,但也正因为又强大又灵活,导致我们使用他们时需要引用一些DLL,同时还要学习各种用 ...
- 分页技巧_测试并继续改进分页用的QueryHelper辅助对象
分页技巧_测试并继续改进分页用的QueryHelper辅助对象 QueryHelper.java /** * 用于辅助拼接HQL语句 */ public class QueryHelper { pri ...
随机推荐
- JavaScript入门学习书籍的阶段选择
对于许多想学习 JavaScript 的朋友来说,无疑如何选择入门的书籍是他们最头疼的问题,或许也是他们一直畏惧,甚至放弃学习 JavaScript 的理由.在 JavaScript 方面,自己不是什 ...
- Spring 4 官方文档学习(十一)Web MVC 框架之multipart(文件上传)支持
http://docs.spring.io/spring/docs/current/spring-framework-reference/html/mvc.html#mvc-multipart 1.简 ...
- e595. Drawing an Image
See also e575 The Quintessential Drawing Program and e594 Reading an Image or Icon from a File. publ ...
- e558. 在Applet中多图片交互显示
This is the simplest applet to animate an array of images. In practice, you should use double-buffer ...
- Zookeeper 应用程序
Zookeeper为分布式环境提供灵活的协调基础架构.ZooKeeper框架支持许多当今最好的工业应用程序.我们将在本章中讨论ZooKeeper的一些最显着的应用. 雅虎 ZooKeeper框架最初是 ...
- 优矿众包对冲基金计划”优选策略---100w实盘资金管理权!!
https://uqer.io/contest/ http://www.cnblogs.com/dunitian/p/4939369.html 优连
- Android Studio怎样查看资源或者函数在哪些类中被引用
很多人在做完Keymap匹配到Eclispe快捷键后,发现查看资源或者函数在哪些地方被引用的快捷键"Ctrl+Shift+G"不灵 了.你选中某个函数后,使用这个快捷键.发现仅仅会 ...
- MVC后台与前台交互的问题。。。
后台: viewbag.sb/*这是一个sb路径*/=@"\gao\shou"; 前台js: var sb='@viewbag.sb'; alert(sb); 结果就是gaocon ...
- window设置TortoiseGit连接git不用每次输入用户名和密码
1. 在Windows中添加一个HOME环境变量,值为%USERPROFILE%,如下图: 2. 在“开始>运行(快捷键:win+r)”中打开%Home%,然后在目录下新建一个名为“_netrc ...
- Digest Authentication 摘要认证
“摘要”式认证( Digest authentication)是一个简单的认证机制,最初是为HTTP协议开发的,因而也常叫做HTTP摘要,在RFC2671中描述.其身份验证机制很简单,它采用杂凑式(h ...