YII - 将另一个视图渲染到组件视图中

时间:2013-06-23 12:46:08

标签: yii components render

我有一个评论名称的组件。此组件的视图文件名称为test.php

我想在test.php中渲染另一个视图文件。我怎么能这样做?

档案地图:

component/
  |
  comment.php
  view/
     |_
       test.php
       another.php

1 个答案:

答案 0 :(得分:1)

您可以这样做,以获得多个视图。

$this->render('view1', array('model' => $model));

// then, inside the view you can render a subview like this:
$this->renderPartial('view2', array('model' => $model)); 

希望这会对你有所帮助。