我制作了一个新的Symfony2包并删除了Acme包。
然后我创建了一个新的Controller(MainController.php
):
<?php
namespace My\BlogBundle\Controller;
class MainController extends Controller
{
/**
* @Route("/", name="index")
* @Template()
*/
public function indexAction()
{
return array();
}
一个简单的视图:(Main/index.html.twig
)只包含hello
。我的routing.yml是空的。当我运行整个项目时,我得到:
No route found for "GET /"
404 Not Found - NotFoundHttpException
1 linked Exception: ResourceNotFoundException »
这里有什么问题以及如何解决?
这是我的路由调试:
\Symfony>php app/console router:debug
[router] Current routes
Name Method Pattern
_wdt ANY /_wdt/{token}
_profiler_search ANY /_profiler/search
_profiler_purge ANY /_profiler/purge
_profiler_info ANY /_profiler/info/{about}
_profiler_import ANY /_profiler/import
_profiler_export ANY /_profiler/export/{token}.txt
_profiler_phpinfo ANY /_profiler/phpinfo
_profiler_search_results ANY /_profiler/{token}/search/results
_profiler ANY /_profiler/{token}
_profiler_redirect ANY /_profiler/
_configurator_home ANY /_configurator/
_configurator_step ANY /_configurator/step/{index}
_configurator_final ANY /_configurator/final
我也清除了缓存但没有成功。
这是routes.yml:
my_blog:
resource: "@MyBlogBundle/Resources/config/routing.yml"
prefix: /
并且MyBlogBundle/Resources/config/routing.yml
中的routing.yml为空。
答案 0 :(得分:9)
设置routes.yml
的方式是,您要从捆绑包中请求routing.yml
文件。
如果要使用注释来管理捆绑中的路由,则必须按以下方式编写routes.yml
:
my_blog:
resource: "@MyBlogBundle/Controller/MainController.php"
prefix: /
type: annotation
您的控制器需要包含Route
中的FrameworkExtraBundle
类:
<?php
namespace My\BlogBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
class MainController extends Controller
{
/**
* @Route("/", name="index")
* @Template()
*/
public function indexAction()
{
return array();
}
}
这假设您已安装SensioFrameworkExtraBundle
(http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/index.html#installation)。
有关路线注释的更多信息:http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/routing.html
答案 1 :(得分:1)
您还可以使用以下内容声明注释的路由:
blog_index:
path: /
defaults: {_controller:BlogBundle:index}
您的BlogBundle / config / routing.yml 中的
并在root中设置
blog:
resource: "@BlogBundle/Resources/config/routing.yml"
prefix: /
然后在你的MainController中,注释应该有效:
..use Symfony\Component\Routing\Annotation\Route;
/**
* @Route("/", name="blogindex")
*/
答案 2 :(得分:0)
为MainController
类添加以下注释:
/**
* @Route("/")
*/
class MainController extends Controller
{
}
答案 3 :(得分:0)
您的问题是您已将路由引用为yml而不是注释,如果您要使用注释,则必须在app路径的前端路径上声明为
post:
resource: "@AcmeBlogBundle/Controller/PostController.php"
type: annotation
并在PostController类中定义
use Symfony\Component\Routing\Annotation\Route;
/**
* @Route("/")
*/
class MainController extends Controller
{
}
和功能
/**
* @Route("/add", name="article_add")
*/
public function add(){
...
}
请参阅docs
的参考资料答案 4 :(得分:0)
对于其他需要对路由器注释正确安装但路由不起作用的情况进行故障排除的人,您可能需要安装
composer require symfony/apache-pack