cakePHP:访问模型中隐藏的数据

时间:2013-11-23 19:30:02

标签: cakephp has-and-belongs-to-many

我有图书馆数据库,我想显示图书细节。文档中有很多文章和文章,而且有很多作者。在ArticlesController中我可以看到文章的作者,但我不知道如何在DocumentsController中访问它们。

1 个答案:

答案 0 :(得分:2)

您需要将属性$ recursive设置为2

$this->Document->recursive = 2;
$this->Document->find('all');

或者您也可以使用可包含的行为

$this->Document->Behaviors->load('Containable');
$this->Document->find('all', array('contain' => array('Article' => 'Author')));