这是第一次使用symfony。设置没问题,但现在我遇到了路由问题......我有一个名为" GenusController"并使用" Sensio \ Bundle \ FrameworkExtraBundle \ Configuration \ Route;"。
我的控制器:
namespace AppBundle\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\BrowserKit\Response;
class GenusController
{
/**
* @Route("/genus")
*/
public function showAction(){
return new Response("Text");
}
}
当我尝试访问网址(http://localhost/aqua_note/web/genus)时,我收到500内部服务器错误。是否有人可以帮助我解决这个问题?
我正在关注本教程https://knpuniversity.com/screencast/symfony3/first-page#play
答案 0 :(得分:0)
使用:
use Symfony\Component\HttpFoundation\Response;
而不是
use Symfony\Component\BrowserKit\Response;