Comment.post_id = Post.id という条件ですべてのコメントを取得したい CommentsView のアクションがありますが、デバッグすると空の配列が返されます。
アクション コメント表示:
public function commentsview()
{
$commentsview = $this->Comment->find('all', array('conditions'=>array('Comment.post_id' => 'Post.id')));
if (!empty($this->params['requested']))
{
return $commentsview;
}
}