今天我用谷歌搜索了更多,找到了一个适合我的解决方案。解决方案是覆盖模型中的 paginateCount 方法。
下面是一个被覆盖的函数。
public function paginateCount($conditions = null, $recursive = 0, $extra = array()) {
$parameters = compact('conditions', 'recursive');
if (isset($extra['group'])) {
$parameters['fields'] = array("iu_count","ff_count");
//$parameters['fields'] = $extra['group'];
if (is_string($parameters['fields'])) {
// pagination with single GROUP BY field
if (substr($parameters['fields'], 0, 9) != 'DISTINCT ') {
$parameters['fields'] = 'DISTINCT ' . $parameters['fields'];
}
unset($extra['group']);
$count = $this->find('count', array_merge($parameters, $extra));
} else {
// resort to inefficient method for multiple GROUP BY fields
$count = $this->find('count', array_merge($parameters, $extra));
$count = $this->getAffectedRows();
}
} else {
// regular pagination
$count = $this->find('count', array_merge($parameters, $extra));
}
return $count;
}
这里“数组(“iu_count”,“ff_count”);” 是我在 HAVING 子句中使用的虚拟字段。如果 HAVING 子句中没有需要的虚拟字段,则将 $extra['group'] 分配给 $parameter['fields']。
希望这个解决方案能帮助一些人。