我对 CommentsView 有一个操作,我想在其中检索所有评论,条件是 Comment.post_id = Post.id 但是当我调试它时,它给了我一个空数组。
动作评论查看:
public function commentsview()
{
$commentsview = $this->Comment->find('all', array('conditions'=>array('Comment.post_id' => 'Post.id')));
if (!empty($this->params['requested']))
{
return $commentsview;
}
}