顧客が接続しているときにフォローしているユーザーに関するすべてのニュース(アクタス)を見つけたいと思います。
これらのテーブルを作成しました
作成されたユーザー
ID
ユーザー名
IDをフォロー
し
ますuser_idfollow_id
Actusiduser_id
コンテンツ
が
作成されまし
た
モデルユーザーは、HasmanyジョイントによってFollowとActuにリンクされています
これを試してみましたが、うまくいかないようです
$this->Follow->find('all', array(
'conditions' => array('Follow.user_id' => $this->Session->read('Auth.User.id')),
'contain' => array('User' => array('Actu','conditions'=>array('User.id = Follow.follow_id')))));
誰かが私を助けてくれますか?
前もって感謝します