我想在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());
}
答案 0 :(得分:3)
您可以尝试:
$this->paginate['Post'] = array('order'=>array('Post.date DESC'),'limit'=>5,'recursive'=>0);
$this->set('posts', $this->paginate('Post'));
有关详细信息,请参阅cookbook。