请帮忙....我是新手
我有 2 个表PAGE和COMMENT。
页表有列
$id
$user_id
$content
评论表有列
$id
$user_id
$page_id
$date_entered
$comment **The comment column consist of an array of comments as one user can have many comments**
在 Page 模型中,relation() 中的关系定义为
return array(
'comments' => array(self::HAS_MANY, 'Comment', 'page_id')
)
现在在 PageControllor.php 中,我在 actionView() 中定义了这个查询
$page = Page::model()->with('user','comments')->findByPk($id);
现在我的问题是
如何在$result中获取此查询的结果,以便我可以将其传递给视图页面
$this->render('view',array('model'=>$this->loadModel($id),'result'=>$result))