当使用layout 进行继承的时候报错 Class 'app\modules\controllers\CommonController' not found
来源:4-3 前后台的调优

qq_L先生_33330037
2017-01-30
<?php
namespace app\modules\controllers;
use yii\web\Controller;
/**
* Default controller for the `admin` module
*/
class DefaultController extends Controller
{
/**
* Renders the index view for the module
* @return string
*/
public function actionIndex()
{
$this->layout = 'layout1';
return $this->render('index');
}
}
写回答
1回答
-
zjx2017
2017-04-28
找不到控制器 看一下该是否创建成功
00
相似问题