1
我想從我的index.php文件中調用我的modules/moduleName/views/ab/_temp
中的視圖。但似乎無法讓它工作。RenderPartial from Modules for index.php
我有這個
public function actionIndex()
{
$model=new Ab;
$this->render('index',array(
'model'=>$model
));
}
在
我views/site/index.php
<?php $this->renderPartial('//modulesName/views/ab/_temp', array('model'=>$model)); ?>
我得到這個錯誤
include(Ab.php): failed to open stream: No such file or directory
請確保您在模型文件夾中有一個Model類文件爲'Ab.php'。 –
你確定Ab.php文件存在嗎? – Andreas