0

我理解这一点: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 中引用它?

4

1 回答 1

0

看起来您只需要使用下划线表示法:

acme_my.controller.my:runAction

如果您的捆绑包定义为AcmeMyBundle. 因此,如果我有一个 AcmeUserBundle 并使用控制器ExceptionController,我会是这样的:

acme_user.controller.exception:debugAction
于 2013-04-13T15:34:15.150 回答