0

我有 3 个模型。类型 hasMany Collector,并且 Collector hasAndBelongsToMany Place。

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

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

4

1 回答 1

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');

?>
于 2013-03-26T22:44:02.280 回答