2016-12-07 11 views
0

私はデータのリストを表示するために、次のクエリを使用していますが、ここでは制限が機能していません。制限がクエリcakephp 3で動作していません

$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

は '入れてみてください - > orderDesc( 'booking_date') - >リミット(10)'; –

答えて

関連する問題