我有模型IndividualSystemSerialNumber,cakephp1.3 当我尝试group by mac_address分页时不起作用。
但是当我group从分页中删除时,它工作正常。
$this->paginate = array(
'order' => $order_by,
'group' => 'IndividualSystemSerialNumber.mac_address',
'page' => intval($page),
'limit' => $this->params['url']['iDisplayLength']
);
$systems = $this->paginate('IndividualSystemSerialNumber');