This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.
“昨日のCakePHPでhasManyでの検索の続きの話し” への6件のフィードバック
ぜひ、さらに詳しいお話お聞きしたいです。
hasManyの値を検索する方法を調べて、このページにたどり着きました。paginateのオプション設定に’joins’の要素をつけたすことによって、hasManyの検索が出来るようになり、’fields’の一意にしたい項目に’DISTINCT **.id’をつけたすことによって、表示もタブらなくなりました。ここまでは、この記事によって順調に解決することが出来ました、有難う御座います。
ですが、この記事にもかかれている、表示のカウント数については今だ解決しておらず、よければどのようにpaginateCountを設定するのか聞けたらと思って下ります。
宜しくお願い致します。
たびたび失礼します。英文のサイトにある以下を使用するモデルに貼り付けたら出来ました!
function paginateCount($conditions, $recursive) {
if (isset($this->forcePaginateCount)) {
$count = $this->forcePaginateCount;
unset($this->forcePaginateCount);
} else {
$count = $this->find(‘count’, compact(‘conditions’, ‘recursive’));
}
return $count;
}
うーん・・
やはり、だめでした。
検索が出来なくなってしまったので、あてずっぽうはダメですね。
necoさん
コメントありがとうございました。
paginateCount()は、ページングで表示する件数を返す必要があります。したがって、条件が1番目の$conditionsにパラメータで入ってきますので、このように書いています。
function paginateCount($conditions, $recursive) {
$Db = ConnectionManager::getDataSource($this->useDbConfig);
$query = “SELECT “; //= ページングで表示する件数を取得するSQLを自力で書く。
$query .= ‘COUNT(DISTINCT “Model”.”id”) AS “count” ‘;
$query .= ‘FROM “models” AS “Model” ‘;
$query .= ‘INNER JOIN ・・・・・’ //= 条件で必要なテーブルを関係づける。
$query .= ‘LEFT JOIN ・・・・・’ //=
$query .= $Db->conditions($conditions); //= 抽出するためのwhere句が生成されるはずです。
$ret_list = $this->query($query);
$count = $ret_list[0][0][‘count’];
return($count);
}
一度、$conditionsに何が入っているか、また$queryがどのように生成されたをダンプされているかを確認したほうがよろしいかと思います。
お返事有難う御座います。
参考どうり表示件数が正しく表示されました!
いくら検索で調べても答えにたどり着かなかったのですが
この記事はとても分かりやすく、きっと多くの人を助けると思います。
今後も勉強させて頂きます!
お役に立てて、よかったです。
本件は、私もとても悩んだ箇所で、結局はCakePHPのソースを読んでしまいました。この辺りは、サイトや解説書にもあまり書かれていないようで、自分の覚え書きとしてして記事を書きました。
今後ともよろしくお願いします。