当前位置:首页 > CMS教程 > 其它CMS > 列表

YII CLinkPager分页类扩展增加显示共多少页

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-07 14:20:35 浏览: 评论:0 

yii的分页类CLinkPager默认是不支持显示共x页的,那么现在需求来了,要在分页的后面显示共多少页,怎么办喃?我们来看解决办法。

1、默认的CLinkPager显示的效果

上面这里写了css的样式哈,我们来看pager代码:

  1. <div class="page-link"> 
  2. <?php $this->widget('CLinkPager',array( 
  3. 'header' => '', 
  4. 'firstPageLabel' => '首页', 
  5. 'lastPageLabel' => '尾页', 
  6. 'prevPageLabel' => '&lt;', 
  7. 'nextPageLabel' => '&gt;', 
  8. 'pages' => $pages, 
  9. 'maxButtonCount'=>5, 
  10. 'htmlOptions' => array('class' => 'page-link'), //分页要使用的css样式 
  11. ));?> 
  12. </div> 

2、我们来看想要的分页类效果

也就是说后面增加显示了共多少页,这个怎么做到的喃?这里我稍微小小的扩展了一下widget组件CLinkPager,看上去也是非常的狠狠简单呐,废话不多少,来来先看代码:

  1. <?php 
  2. /** 
  3. * 分页组建ClinkPager扩展 
  4. * @description page-tab-tog为分页的样式class 
  5. * @author <[<xm 杭州>]> 
  6. * @time 2016-01-29 
  7. * @example 
  8. * <div class="page-tab-tog"> 
  9. * <?php $this->widget('MLinkPager',array( 
  10. * 'header' => '', 
  11. * 'firstPageLabel' => '首页', 
  12. * 'lastPageLabel' => '尾页', 
  13. * 'prevPageLabel' => '&lt;', 
  14. * 'nextPageLabel' => '&gt;', 
  15. * 'pages' => $pages, 
  16. * 'maxButtonCount'=>5, 
  17. * 'htmlOptions' => array('class' => 'page-tab-tog'), 
  18. * ));?> 
  19. * </div> 
  20. */ 
  21. class MLinkPager extends CLinkPager 
  22. //设置为true的时候,显示共X页,$this->forceTotalPage值优先该值 
  23. public $mCountPage = false; 
  24. //是否强制显示共x页,设置为true时,$this->mCountPage和$this->getPageRange()无效 
  25. public $forceTotalPage = false; 
  26. public function init() 
  27. public function run() 
  28. $this->registerClientScript(); 
  29. $buttons=$this->createPageButtons(); 
  30. list($beginPage,$endPage)=$this->getPageRange(); 
  31. if ($this->forceTotalPage) 
  32. $buttons[] = CHtml::tag('li'array('class'=>'totle'),'共'.$this->getPageCount().'页'); 
  33. else 
  34. if ($this->mCountPage && $endPage > 0) 
  35. $buttons[] = CHtml::tag('li'array('class'=>'totle'),'共'.$this->getPageCount().'页'); 
  36. if(emptyempty($buttons)) 
  37. return
  38. echo $this->header; 
  39. echo CHtml::tag('div',$this->htmlOptions,implode("\n",$buttons)); 
  40. echo $this->footer; 

有人说了,一看那么一堆代码,头疼,你这玩意怎么能以最快的速度见到效果呢?来来我们继续看怎么使用,首先呢,你需要先把上面的扩展MLinkPager原封不动的拷贝到本地的components目录下的MlinkPager文件里,什么,你没有这个文件,自己创建,^~^!好了以后咱们来看下view里面是怎么使用的,那是简单的不能再过于简单了。

  1. <div class="page-tab-tog"> 
  2. <?php $this->widget('MLinkPager',array( 
  3. 'header' => '', 
  4. 'firstPageLabel' => '首页', 
  5. 'lastPageLabel' => '尾页', 
  6. 'prevPageLabel' => '&lt;', 
  7. 'nextPageLabel' => '&gt;', 
  8. 'pages' => $pages, 
  9. 'maxButtonCount'=>5, 
  10. 'mCountPage' => true, //!!!注意看这里,加一行代码就ok了 
  11. 'htmlOptions' => array('class' => 'page-tab-tog'), 
  12. ));?> 
  13. </div> 

什么?你刚睡醒眼神不好,没看出来区别?注意看MLinkPager的配置项mCountPage,这个设置为true就万事大吉了!

特别说明:如果你的列表没有数据的话,分页是不显示页码的,但是如果有刁蛮产品要的需求是没有列表数据,但但但你必须得吧共0页显示出来,我们的MlinkPager只需要设置下配置项forceTotalPage为true即可,此时设置mCountPager无效了咯,具体详细请看MlinkPage类,次类可自己再进行扩展

下面给大家介绍在在yii中使用分页

yii中使用分页很方便,如下两种方法:

在控制器中:

1、

  1. $criteria = new CDbCriteria(); //new cdbcriteria数据库<br>$criteria->id = 'id ASC'; //排序规则 
  2. $count = Exchange::model()->count($criteria); 
  3. $pager = new CPagination($count); 
  4. $pager->pageSize=30; 
  5. $pager->applyLimit($criteria); 
  6. $categoryInfo = Category::model()->findAll($criteria); //根据条件查询 

2、

  1. $criteria = new CDbCriteria(); 
  2. $criteria->order = 'id ASC'
  3. $criteria->addCondition('status=1'); //根据条件查询 
  4. $criteria->addCondition('exchange_status=0'); 
  5. $count = Exchange::model()->count($criteria); 
  6. $pager = new CPagination($count); 
  7. $pager->pageSize=30; 
  8. $pager->applyLimit($criteria);  
  9. $exchangeInfo = Exchange::model()->findAll($criteria); 

render中传入参数:

array("pages" => $pager)

视图中加入:

  1. $this->widget('CLinkPager',array
  2. 'header'=>''
  3. 'firstPageLabel' => '首页'
  4. 'lastPageLabel' => '末页'
  5. 'prevPageLabel' => '上一页'
  6. 'nextPageLabel' => '下一页'
  7. 'pages' => $pages
  8. 'maxButtonCount'=>8, 
  9. ); 

分页思想:

1、计算数据库中总的条数

2、分页大小

3、设置偏移量limit

在Yii中,分页时会用这个类CDBcritria进行数据库查询很重要,这样分页很简单。

Tags: CLinkPager YII分页类

分享到:

相关文章