限制在查询cakephp 3中不起作用

时间:2016-12-07 09:05:10

标签: pagination cakephp-3.0

我使用以下查询来显示数据列表,但此处限制无效。

$query = $this->Bookings->find('all')
    ->where(['Bookings.user_id' => $id])
    ->contain(['Services'])
    ->limit(10)
    ->orderDesc('booking_date');

$this->set('bookings', $this->paginate($query));
$this->set('_serialize', ['bookings']); 

但是,我没有在每个页面中获得10个数据的列表。

1 个答案:

答案 0 :(得分:1)

相关问题