我的模型看起来像这样:
Performance - Location - Event - Location (Another one) - A bunch of other stuff
当我将递归设置为2时,我得到 way 太多数据(“一堆其他东西”) 当我使用contains('Location')时,我只在Performance下直接获得“Location”模型,而不是在Event ...
下如何获取该数据?
答案 0 :(得分:2)
你有没有尝试过(假设来自控制器):
$this->Performance->find('all', array(
'contain' => array('Event' => 'Location')
));