代码之家  ›  专栏  ›  技术社区  ›  Chris

相关数据分页

  •  1
  • Chris  · 技术社区  · 14 年前

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

    2 回复  |  直到 14 年前
        1
  •  1
  •   random    13 年前

    这可以通过使用这样的代码来实现,假设您有 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.
     */
    
    }
    

    之后,在ViewPostPage中调用此函数,并在ViewPost模板中传递注释的列表代码。

        2
  •  0
  •   Pentium10    13 年前