CakePHP 3检索关联数据

时间:2015-11-07 11:49:32

标签: cakephp

我想获取商店数据以及相关评论与本店,但评论还包含连接到作者表的author_id。

如何通过author_id获取评论,还有作者数据?

我的商店控制员:

public function viewShop($slug = null)
    {
       $shop = $this->Shops->find('all')
                ->where(['slug'=>$slug])
                ->contain(['Comments']);


       $this->set('shop', $shop);
       $this->render('index');

    }

1 个答案:

答案 0 :(得分:0)

首先将您的Comment模型与作者模型绑定为BelongsTo,然后用此替换您的代码。

e.printStackTrace()