在之前的主题cakephp 3 paginator doesn't work中,我遇到了Cakephp 3中的paginator问题,他给了一个错误,但这次我没有错误,绝对没有这个查询
$tweet_comm = $this->Tweet->find()
->where(['Tweet.id' => $this->request->getParam('id')])
->contain(['Users'])
->contain(['Commentaires'=> function($q) {
return $q->order(['Commentaires.created' => 'DESC']);
}])
->contain(['Commentaires.Users']);
$this->set('tweet', $this->Paginator->paginate($tweet_comm, ['limit' => 8]));
此查询在视图中完美运行,但我想分页,当我尝试使用`Paginator-> next('下一页'); ?>他给了我当前页面,没有任何第2页
我怀疑包含有问题 `