我有 3 个模型。类型 hasMany Collector,并且 Collector hasAndBelongsToMany Place。
我需要获取 Collectors 至少拥有一个 Place 的所有类型。所以我不需要收藏家没有地方的类型。
我在 Collector 模型中没有计数字段,所以我不能使用 counterCache。
我有 3 个模型。类型 hasMany Collector,并且 Collector hasAndBelongsToMany Place。
我需要获取 Collectors 至少拥有一个 Place 的所有类型。所以我不需要收藏家没有地方的类型。
我在 Collector 模型中没有计数字段,所以我不能使用 counterCache。
我在这里可能弄错了,但我相信最好的方法是利用 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');
?>