私はこの構造とテーブルを持つツリーモデルを持っています:
Rate:
id, model_name, object_id
1 , SocialPost, 12
public $belongsTo => array(
'SocialPost' => array(
'className' => 'Social.SocialPost',
'foreignKey' => 'object_id',
'conditions' => array(
'Rate.object_id = SocialPost.id',
),
)
)
SocialPost: id、file_id
public $hasOne = array(
'File' => array(
'className' => 'File',
'foreignKey' => false,
'conditions' => array(
'File.id = SocialPost.file_id',
),
),
);
ファイル: id、タイトル
すべてのツリー モデル actAs 包含可能
このコードは SocialPostsController でうまく機能します:
$posts = $this->SocialPost->find('all', array(
'limit' => 5,
'contain' => array(
'File'
)
));
出力: http://pastie.org/private/9ixxufncwlr3tofgp8ozw
ただし、RatesController のこのコードは、すべての SocialPost に対して同じファイルを返します。
$mostRated = $this->Rate->find('all', array(
'limit' => $count,
'contain' => array(
'SocialPost' => array(
'File'
)
)
));
出力: http://pastie.org/private/lbqryo1gxgvxjb5omfwrw
ここで何が問題なのですか?