今日、私はさらにグーグルで検索し、自分に合った解決策を見つけました。解決策は、モデルの 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;
}
ここでは「array("iu_count","ff_count");」HAVING句で使用している仮想フィールドです。HAVING 句に必要な仮想フィールドがない場合は、$extra['group'] を $parameter['fields'] に割り当てます。
このソリューションが誰かに役立つことを願っています。