cakephp 3 paginator不适用于特定查询

时间:2017-11-22 12:48:42

标签: cakephp cakephp-3.0 paginator

在之前的主题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页

我怀疑包含有问题 `

0 个答案:

没有答案