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

Yii分页用法实例详解

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-02 21:00:34 浏览: 评论:0 

这篇文章主要介绍了Yii分页用法,以实例形式详细分析了比较常见的几种分页方法及其应用特点,非常具有实用价值,需要的朋友可以参考下

下面我总结了在Yii常用的一些yii分页方式与实例代码,这里有普通分页与ajax实现分页,希望此文章对大家会有所帮助。

第一种:CListView分页  针对对象形式的数据分页

Controller:

  1. public function actionAjax() { 
  2.         $criteria = new CDbCriteria(); 
  3.         //$criteria->order = 'news_id DESC'; 
  4.         $criteria->condition = 'user_id = 1'
  5.  
  6.         $dataProvider = new CActiveDataProvider('News'array
  7.                     'pagination' => array
  8.                         'pageSize' => Yii::app()->params['pagesize'], 
  9.                         'pageVar' => Yii::app()->params['pagevar'], 
  10.                     ), 
  11.                     'criteria' => $criteria
  12.                 )); 
  13.  
  14.  
  15.         $this->render('view'array
  16.             'dataProvider' => $dataProvider
  17.         )); 

View:

  1. <?php 
  2. $this->widget('zii.widgets.CListView'array
  3.     'dataProvider' => $dataProvider//数据 
  4.     'itemView' => '_view'//显示的模版 
  5.     'id' => Yii::app()->controller->id, 
  6.     'itemsTagName' => 'ul'
  7.     'ajaxVar' => ''//默认为page或ajax 去掉后url更简洁 
  8.     'htmlOptions' => array('class' => Yii::app()->controller->id), 
  9.     'loadingCssClass' => 'loading'//默认为list-view-loading 
  10.     //'template' => '{summary}{sorter}{items}{pager}',//显示的顺序 
  11.     //'ajaxUpdate' => false, //是否ajax分页  false或分页显示的容器id 
  12.     //'beforeAjaxUpdate' => 'before_ajax_update',   //回调函数 在common.js里完成 
  13.     //'afterAjaxUpdate' => 'after_ajax_update',   
  14.     'emptyText' => ' 
  15. <DIV class="alert alert-waning"
  16.     暂无数据! 
  17. </DIV> 
  18. ', //无数据时显示内容 
  19.                     'pagerCssClass' => 'pagination'//分页的class 
  20.                     'pager' => array
  21.                         'selectedPageCssClass' => 'active'//当前页的class 
  22.                         'hiddenPageCssClass' => 'disabled'//禁用页的class 
  23.                         'header' => ''//分页前显示的内容 
  24.                         'maxButtonCount' => 10, //显示分页数量 
  25.                         'htmlOptions' => array('class' => ''), 
  26.                         'firstPageLabel' => '首页'
  27.                         'nextPageLabel' => '下一页'
  28.                         'prevPageLabel' => '上一页'
  29.                         'lastPageLabel' => '末页'
  30.                     ), 
  31.                 )); 
  32. ?> 

第二种:CLinkPager  针对数组形式的数据分页

Controller:

  1. public function actionIndex() { 
  2.  
  3.         $criteria = new CDbCriteria(); 
  4.         $criteria->order = 'news_id DESC'
  5.         $criteria->condition = 'user_id = 1'
  6.  
  7.         $count = News::model()->count($criteria); 
  8.         $pages = new CPagination($count); 
  9.  
  10.         $pages->pageSize = 10; 
  11.         $pages->applyLimit($criteria); 
  12.         $list = News::model()->findAll($criteria); 
  13.  
  14.         $this->render('index'array('list' => $list'pages' => $pages)); 

View:

  1. <UL> 
  2.     <?php foreach ($list as $item): ?> 
  3.     <LI> 
  4.           
  5.         <DIV class=page-header> 
  6.             <?php echo $item--->news_title; ?> 
  7.         </DIV> 
  8.  
  9.         <DIV class=content> 
  10.             <?php echo $item--->news_intro; ?> 
  11.         </DIV> 
  12.  
  13.     </LI> 
  14. <?php endforeach; ?> 
  15. </UL> 
  16.  
  17. <DIV class=pagination> 
  18.     <?php 
  19.     $this--->widget('CLinkPager'array
  20.         'pages' => $pages
  21.         'selectedPageCssClass' => 'active'//当前页的class 
  22.         'hiddenPageCssClass' => 'disabled'//禁用页的class 
  23.         'header' => ''//分页前显示的内容 
  24.         'maxButtonCount' => 10, //显示分页数量 
  25.         'htmlOptions' => array('class' => ''), 
  26.         'firstPageLabel' => '首页'
  27.         'nextPageLabel' => '下一页'
  28.         'prevPageLabel' => '上一页'
  29.         'lastPageLabel' => '末页'
  30.             ) 
  31.     ); 
  32.     ?> 
  33. </DIV> 

第三种: DAO实现分页.

Controller层:

  1. public function actionReport() 
  2. $sql = "select remitdate, sum(rate) sumrate from td_delivery 
  3. group by remitdate 
  4. order by remitdate desc"; 
  5. $criteria=new CDbCriteria(); 
  6. $result = Yii::app()->db->createCommand($sql)->query(); 
  7. $pages=new CPagination($result->rowCount); 
  8. $pages->pageSize=2; 
  9. $pages->applyLimit($criteria); 
  10. $result=Yii::app()->db->createCommand($sql." LIMIT :offset,:limit"); 
  11. $result->bindValue(':offset'$pages->currentPage*$pages->pageSize); 
  12. $result->bindValue(':limit'$pages->pageSize); 
  13. $posts=$result->query(); 
  14. $this->render('report',array
  15. 'posts'=>$posts
  16. 'pages'=>$pages
  17. )); 

View层:

  1. <?php foreach($posts as $row):?> 
  2.  <?php echo CHtml::link($row["remitdate"],array('delivery/view','remitdate'=>$row["sumrate"]));?> 
  3.  <?php echo $row["sumrate"]."<br />" ?> 
  4.  <?php endforeach;?> 
  5.  <?php 
  6.  //分页widget代码: 
  7.  $this->widget('CLinkPager',array('pages'=>$pages)); 
  8. ?> 

优点: DAO效率高; 缺点: view层需要自己写一些样式,稍显麻烦一点

第四种:widget实现分页

model层:

  1. /** 
  2. * @var string attribute : 日运费 (统计用) 
  3. * 需要对新增加的字段做个声明 
  4. */ 
  5. public $dayrate
  6. /* 
  7. * 统计功能: 统计每日的运费 
  8. */ 
  9. public function statistics() 
  10. $criteria = new CDbCriteria; 
  11. $criteria->select = 'remitdate, sum(rate) AS dayrate'
  12. $criteria->group = 'remitdate'
  13. return new CActiveDataProvider(get_class($this), array
  14. 'criteria'=>$criteria
  15. 'sort'=>array
  16. // 表头设置点击排序的字段 
  17. 'attributes'=>array
  18. 'remitdate'
  19. 'dayrate'=>array
  20. 'asc'=>'dayrate'
  21. 'desc'=>'dayrate DESC'
  22. ), 
  23. 'defaultOrder'=>'remitdate desc'
  24. ), 
  25. )); 

Controller层:

  1. /** 
  2. * 运单统计功能: 
  3. * 按日期统计 
  4. */ 
  5. public function actionReport() 
  6. $model=new Delivery('statistics'); 
  7. $model->unsetAttributes(); // clear any default values 
  8.  
  9. $this->render('report',array
  10. 'model'=>$model
  11. )); 

View层:

  1. <?php $this->widget('zii.widgets.grid.CGridView'array
  2. 'id'=>'delivery-grid'
  3. 'dataProvider'=>$model->statistics(), 
  4. 'filter'=>$model
  5. 'columns'=>array
  6. 'remitdate'
  7. 'dayrate'
  8. array
  9. 'class'=>'CButtonColumn'
  10. ), 
  11. ), 
  12. )); 
  13. ?> 

优点: 可以使用自带的样式; 缺点: 效率略低.

第五种:Ajax分页

YII中ajax分页有多种实现方法,比较传统的就是在view中写JS来实现,大概的就是这样:

在view中js大概逻辑是这样,代码如下:

  1. $('#listview .yiiPager a').live('click',function(){ 
  2.         $.ajax({ 
  3.             url:$(this).attr('href'), 
  4.             success:function(html){ 
  5.                 $('#listview').html(html); 
  6.             } 
  7.         }); 
  8.         return false;//阻止a标签 
  9. }); 

然后在controller中判断ajax请求,再使用renderPartial方法渲染局部List视图,然后局部视图会被view中的ajax方法填充到局部刷新的div中。controller的大概逻辑是:

  1. if (Yii::app()->request->isAjaxRequest) { 
  2. $this->renderPartial('_comments',array
  3.     'model' => $model
  4.     'comments' => $comments,//在局部视图中foreach得到每条数据 
  5.     'pages' => $pages
  6.    )); 
  7.     Yii::app()->end(); 

后来发现YII中的CListview更方便,封装了分页,foreach显示list,还支持数据排序。具体的可以在YII的API手册中发掘。使用CListview是默认ajax分页的,使用方法如下:

controller中:

  1. $criteria = new CDbCriteria(); 
  2. $criteria->order = '`create_time` DESC'
  3. $dataProvider = new CActiveDataProvider('Comments'array
  4.     'pagination'=>array
  5.       'pageSize'=>Yii::app()->params['commentsPerPage'],//设置分页条数以确定取出数据的条数 
  6.   ), 
  7.   'criteria'=>$criteria
  8.   )); 
  9. $this->render('comments',array
  10.          'model' => $model
  11.          'dataProvider' => $dataProvider
  12. )); 

然后在view中:

  1. <?php $this->widget('zii.widgets.CListView'array
  2.   'dataProvider'=>$dataProvider
  3.   'itemView'=>'_comments'
  4.   //'ajaxUpdate'=> false,//这样就不会AJAX翻页 
  5.   'pager' => array(//pager 的配置信息。默认为<CODE>array('class'=>'CLinkPager')</CODE>.也可以自己配置 
  6.    'nextPageLabel' => '下一页 »'
  7.    'prevPageLabel' => '« 上一页' 
  8.   ), 
  9. //在这里还可以配置一些排序规则,具体可以查阅手册 
  10. )); 
  11. ?> 

这样就实现了Ajax分页,很方便。

希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。

Tags: Yii分页

分享到: