How to Limit the paginate in cakephp

前端 未结 5 1418
时光说笑
时光说笑 2021-01-17 23:58

How to Limit the paginate in cakephp ?

Assume that i have 400 records.
I need to get only 25 records from 50th record to 75th record and need to display 5 recor

5条回答
  •  有刺的猬
    2021-01-18 00:19

    $query = $this->User->find('all', [
        'recursive' => 2,
        'order' => array('Profile.winning' => 'DESC'),
        'limit' => 25, 
        'offset' => 50
    ]);
    $this->paginate = array(
        $query,
        'limit' => 5
    );
    

提交回复
热议问题