如何在CakePhp中限制db查询数据?

时间:2010-07-01 09:53:19

标签: cakephp cakephp-1.3

我想在CakePhp上限制我的db数据。它可以用find命令限制,但我不知道是否可以限制我的使用。这是来自posts_controller.php文件的代码:

function index() {  
    $this->Post->order = array('order'=>'Post.date DESC','limit'=>5);  
    $this->Post->recursive = 0;  
    $this->set('posts', $this->paginate());  
}

1 个答案:

答案 0 :(得分:3)

您可以尝试:

$this->paginate['Post'] = array('order'=>array('Post.date DESC'),'limit'=>5,'recursive'=>0);      
$this->set('posts', $this->paginate('Post')); 

有关详细信息,请参阅cookbook