为什么在 Symfony 中创建新控制器时出现错误?
Why am I getting an error when creating a new controller in Symfony?
有一个项目需要完成。使用现有命名空间创建新控制器时,出现错误
Fatal error: Uncaught Symfony\Component\DependencyInjection\Exception\InvalidArgumentException: Expected to find class "App\Controller\MyController" in file "/var/www/app/src/Controller/MyController.php" while importing services from resource "../src/*", but it was not found! Check the namespace prefix used with the resource.
奇怪的是 TestController
一切正常
解决方案:
创建有效控制器后,您需要打开任意页面
一次添加一个方法并在每个
之后打开任何页面
有一个项目需要完成。使用现有命名空间创建新控制器时,出现错误
Fatal error: Uncaught Symfony\Component\DependencyInjection\Exception\InvalidArgumentException: Expected to find class "App\Controller\MyController" in file "/var/www/app/src/Controller/MyController.php" while importing services from resource "../src/*", but it was not found! Check the namespace prefix used with the resource.
奇怪的是 TestController
一切正常
解决方案:
创建有效控制器后,您需要打开任意页面 一次添加一个方法并在每个
之后打开任何页面