tp 的分页 没有总页数

浏览:3944 发布日期:2015/10/30 分类:求助交流 关键字: 分页
$count = M("ceshi")->count();
        $page = new \Think\Page($count, 10);
        $showPage = $page->show();
        $list = M("ceshi")->limit($page->firstRow, $page->listRows)->select();        
        $this->assign("list", $list);
        $this->assign("page", $showPage);
        $this->display();
最佳答案
评论( 相关
后面还有条评论,点击查看>>