0

我有一个带有注释名称的组件。这个组件有一个test.php名为的视图文件。

我想在 test.php 中呈现另一个视图文件。我怎么能做到这一点?

文件地图:

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

1 回答 1

1

您可以简单地这样做以获得多个视图。

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

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

希望这对您有所帮助。

于 2013-06-23T12:52:51.137 回答