CakePHP查找相关模型计数的条件

时间:2013-03-26 17:52:17

标签: cakephp

我有3个型号。输入hasMany Collector,Collector hasAndBelongsToMany Place。

我需要获得收藏家至少有一个地方的所有类型。所以我不需要收藏家没有地方的类型。

我在Collector模型中没有count字段,所以我不能使用counterCache。

1 个答案:

答案 0 :(得分:0)

我可能会在这里弄错,但我相信最好的方法是使用Model :: afterFind()方法。

<?php
// type.php (Model)
function afterFind($results, $primary) {
    if ($primary === true) {
        foreach ($results as $key => $type) {
            foreach ($type['Collector'] as $collector) {
                // Assuming you built the associations/tables/etc. correctly and are following cake conventions.
                if (empty($collector['Place']))  {
                    unset($results[$key]);
                    continue 2;
                }
            }
        }
    }
}
?>

<?php
// types_controller.php

// Assuming you're using the containable behavior? If not
// set recursive to 2.
$this->Type->contain(array(
    'Collector' => array(
        'Place'
    )
));
$types = $this->Type->find('all');

?>