我使用以下查询来显示数据列表,但此处限制无效。
$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个数据的列表。
答案 0 :(得分:1)
也许最好使用$paginate
属性,然后使用maxLimit