未知 Class – yii\base\UnknownClassException Yii2
Unknown Class – yii\base\UnknownClassException Yii2
我是 Yii2.I 的初学者,正在从这里学习 Yii2 Yii2 documentation link.When I run this file,its giving me the following error.
我在 C:\xampp\htdocs\yii\frontend\controllers\CountryController.php.
中创建了一个 CountryController
编辑:
在控制器中修改命名空间后,现在在视图中出现问题。
错误消息基本上是说找不到您的控制器。所以你需要做的是确保你的文件存储在你的命名空间所暗示的相同位置。我怀疑他们不一致。所以...
您正在使用 app\controllers
的命名空间,但您将文件存储在 yii\frontend\controllers
中。我怀疑 yii\frontend\controllers
不对应 app\controllers
。我怀疑,您所要做的就是使用命名空间 frontend\controllers
- 但这取决于您使用的别名。
我是 Yii2.I 的初学者,正在从这里学习 Yii2 Yii2 documentation link.When I run this file,its giving me the following error.
我在 C:\xampp\htdocs\yii\frontend\controllers\CountryController.php.
中创建了一个 CountryController编辑:
在控制器中修改命名空间后,现在在视图中出现问题。
错误消息基本上是说找不到您的控制器。所以你需要做的是确保你的文件存储在你的命名空间所暗示的相同位置。我怀疑他们不一致。所以...
您正在使用 app\controllers
的命名空间,但您将文件存储在 yii\frontend\controllers
中。我怀疑 yii\frontend\controllers
不对应 app\controllers
。我怀疑,您所要做的就是使用命名空间 frontend\controllers
- 但这取决于您使用的别名。