Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何选项$this->Paginator->Settings()可以对表进行分页并将第二页或第三页存储到变量中
$this->Paginator->Settings()
$view=$this->Paginate('Post');
您可以使用以下内容指定页面:
$this->Paginate->settings(array('page' => 2)); $posts = $this->Paginate->paginate('Post');
$posts现在包含页面的记录2
$posts
2