Yii分页相关数据

时间:2010-07-15 10:25:32

标签: php yii activerecord

在Yii中分页相关数据的最佳方法是什么?

例如我可能有帖子,我想分页评论。

2 个答案:

答案 0 :(得分:1)

这可以通过使用这样的代码来实现,假设你有CommentController.php

function listComments(){

 /* Write code here to fetch comments with current post from db and 
    return template code via calling renderPartial(). 
    Also implement paging, sorting etc. in this same function.
 */

}

之后,在视图帖子页面中调用此函数,并在视图帖子模板中传递评论的列表代码。

答案 1 :(得分:0)

调查CActiveDataProvider它已经内置了分页支持。