在CakePHP中使用contains

时间:2012-06-18 08:36:36

标签: cakephp

我的模型看起来像这样:

Performance
    - Location
    - Event
        - Location (Another one)
        - A bunch of other stuff

当我将递归设置为2时,我得到 way 太多数据(“一堆其他东西”) 当我使用contains('Location')时,我只在Performance下直接获得“Location”模型,而不是在Event ...

如何获取该数据?

1 个答案:

答案 0 :(得分:2)

你有没有尝试过(假设来自控制器):

$this->Performance->find('all', array(
   'contain' => array('Event' => 'Location')
));