0

只是想知道我需要做什么才能访问我的 SiteController 类中的模块视图以呈现该视图而不是索引视图。我想访问在protected/modules/account/views/account/register.php. 我知道我需要在我的SiteController::actionIndexclass::method :中更改这一行$this->render('index', array('model' => $model));。但我不确定我需要放什么才能访问模块的视图。我试过'account/views/account/register了,但我得到了这个例外:CException SiteController cannot find the requested view "account\views\account\register"

感谢您提供的任何帮助或指导

4

1 回答 1

3

通过这个你可以访问 modules/mymodule/views/profile/changepassword 视图

$this->renderPartial('application.modules.mymodule.views.profile.changepassword',array('model'=>$model));
于 2013-08-14T18:20:29.510 回答