2016
03-21
03-21
Yii2.0详解分页功能
使用:先在action里面生成分页对象,然后在前台的LinkPager中使用。后台controller中:functionactionIndex(){$query=Article::find()->where(['status'=>1]);$countQuery=clone$query;$pages=newPagination(['totalCount'=>$countQuery->count()]);$models=$query->offset($pages->offset)->limit($pages->limit)->all();return$this->render('...
继续阅读 >