Home > Article > Backend Development > How to implement paging in YII, how to implement paging in YII_PHP tutorial
This article briefly describes the method of paging in Yii with example code for reference by friends who are learning Yii. The specific code is as follows:
1. Controller part code:
public function actionTest() { $criteria=new CDbCriteria; $criteria->order='id DESC'; $count=User::model()->count($criteria); $pager=new CPagination($count); $pager->pageSize=10; $pager->applyLimit($criteria); $userList=User::model()->findAll($criteria); $this->render('test',array('list'=>$userList,'pages'=>$pager)); }
2. View part code:
<?php foreach($list as $o) { echo $o->username.'<br/>'; echo $o->id.'<br/>'; } $this->widget('CLinkPager',array( 'header'=>'', 'firstPageLabel' => '首页', 'lastPageLabel' => '末页', 'prevPageLabel' => '上一页', 'nextPageLabel' => '下一页', 'pages' => $pages, 'maxButtonCount'=>13 ) ); ?>
SQL uses limit and offset. Use $pages = new CPagination ();
for pagination
You can first read the basic tutorial and try to use the AR model. In this case, you can first build a posts table to store the public part of the publishing information, so that all resources can be in a basic model and can be generated using GII Model and CURD all the codes, and then set a resource type according to the posts, and use the id to associate to different resource tables. As for the tags, you can set up another table and associate it.