我在yii2高级模板后端/ modules / fansoftware中创建了一个模块 当我访问它时给我错误
" yii2获取未知属性:backend \ modules \ fansoftware \ controllers \ DefaultController :: pageHeading"
我使用Url中的路径作为 本地主机/ mysite的/后端/网络/ fansoftware /默认
<?php
namespace app\modules\fansoftware\controllers;
use yii\web\Controller;
/** * Default controller for the fansoftware` module /
class DefaultController extends Controller {
/* * Renders the index view for the module *
@return string
*/ public function actionIndex() {
return $this->render('index');
}
}
请有人告诉我实际问题是什么?