我想列出给定用户的帖子。它有效,但分页不准确。
我的代码如下
public function index($userid = null) {
if ($this->Post->exists($userid)) {
$this->set('posts',$this->Post->find('all',array('conditions'=>array('user_id'=>$userid))),
$this->paginate());
} else
{
$this->Post->recursive = 0;
$this->set('posts', $this->paginate());
}
结果给出了正确的列表 --> 3 个帖子,但分页器显示页码 1 和 2
你能帮助我吗?谢谢