dsk710351 2014-07-28 07:47
浏览 20
已采纳

在cakephp中显示分页项目的最后一页

If requesting for a page say page number 3 in paginated items of a table in cakephp, which is having only 2 pages, how do we show the last page ie page number 2?

  • 写回答

1条回答 默认 最新

  • dst2007 2014-07-28 07:52
    关注

    I found out the solution here:-

    cakephp paginator helper shows error when delete the last record from the last page

    public function index() {
        try {
            $paginatedData = $this->Paginator->paginate();
        } catch (NotFoundException $e) {
            //get current page
            $page = $this->request->params['named']['page'];
            if( $page > 1 ){
                //redirect to previous page
                $this->redirect( array( "page" => $page-1 ) );
            }else{
                $paginatedData = array(); //no data to paginate so use empty array()
                                          //you will have to check for this in the view and no longer display the pagination links, since they will NOT be defined
            }
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看