$this->paginate = array(
'limit' => 5,
'conditions' => ''
);
$this->paginate['conditions'] = array(
'name LIKE' => '%a'
);
他们注意到:
Notice (8): Indirect modification of overloaded property EmployeeCvsController::$paginate has no effect [APP\Controller\EmployeeCvsController.php, line 137]
有人可以解释一下为什么我不能从数组中更改订单元素吗?