前端之家收集整理的这篇文章主要介绍了
YII实现分页的方法,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
本文以实例代码简述了yii实现分页的方法,供学习yii的朋友参考,具体代码如下:
1.控制器部分代码:
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;">
username.'
';
echo $o->id.'
';
}
$this->widget('CLinkPager',array(
'header'=>'','firstPageLabel' => '
首页','lastPageLabel' => '末页','prevPageLabel' => '
上一页','nextPageLabel' => '
下一页','pages' => $pages,'maxButtonCount'=>13
)
);
?>
原文链接:https://www.f2er.com/php/24192.html