时间:2021-07-01 10:21:17 帮助过:4人阅读
1.控制器部分代码:
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.视图部分代码:
<?php
foreach($list as $o)
{
echo $o->username.'
';
echo $o->id.'
';
}
$this->widget('CLinkPager',array(
'header'=>'',
'firstPageLabel' => '首页',
'lastPageLabel' => '末页',
'prevPageLabel' => '上一页',
'nextPageLabel' => '下一页',
'pages' => $pages,
'maxButtonCount'=>13
)
);
?>