我理解这一点:http://symfony.com/doc/2.1/reference/configuration/twig.html(版本2.1)以及如何引用exception_controller的包:
exception_controller: Symfony\Bundle\TwigBundle\Controller\ExceptionController::showAction
但我不明白如何为版本2.2(我正在使用)(http://symfony.com/doc/current/reference/configuration/twig.html)
执行此操作exception_controller: twig.controller.exception:showAction
我的论坛位于:
Acme\Bundle\MyBundle\Controller\MyController::runAction
...我如何在2.2中引用它?
答案 0 :(得分:0)
看起来你只需要使用下划线表示法:
acme_my.controller.my:runAction
如果您的捆绑包定义为AcmeMyBundle
。所以,如果我有一个AcmeUserBundle并使用控制器ExceptionController
,我会这样:
acme_user.controller.exception:debugAction