I have a problem with this pagination i use this code

var $paginate = array(
    'limit' => 5)

yes it work but after i code my search plugin, this pagination code is not working

please help me

没有正确的解决方案

其他提示

Try using this as an example for your pagination

$this->paginate = array(
    'conditions' => array( ... )
    'limit' => 5,
);
$myResults = $this->paginate( 'MyModel' );
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top