Pagination Sort in Cakephp 3.x

后端 未结 2 948
清酒与你
清酒与你 2020-12-10 08:42

In cakephp 3.x i can\'t do paginate order in a find

This is my controller:

//AgentsController.php
public function show()
{
    $agents = $this->Ag         


        
2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-10 08:53

    Try:

    $this->paginate = ['sortWhitelist' => ['full_name','username','regions'],'limit' => 3];
    

    This will also set pagination limit too.

提交回复
热议问题