4

我想自定义 Symfony 2.0 中的错误页面

我知道这是通过覆盖其中的布局来完成的,app/Resources/TwigBundle/views/Exception/*但我希望为不同的路线设置不同的错误页面。

我想要一个用于后端,一个用于前端。

我怎样才能做到这一点?

4

2 回答 2

10

你需要做的并不难。Symfony 允许您明确指定哪个控制器处理您的异常。因此,在您的 config.yml 中,您可以在 twig 配置下指定异常控制器:

从 Symfony 2.2 开始

twig:
   exception_controller:  my.twig.controller.exception:showAction

services:
    my.twig.controller.exception:
        class: AcmeDemoBundle\Controller\ExceptionController
        arguments: [@twig, %kernel.debug%]

直到 Symfony 2.1:

twig:
  exception_controller: AcmeDemoBundle\Controller\ExceptionController::showAction

然后,您可以创建一个自定义 showAction,根据路由显示自定义错误页面:

<?php
namespace AcmeDemoBundle\Controller;

use Symfony\Component\HttpKernel\Exception\FlattenException;
use Symfony\Component\HttpKernel\Log\DebugLoggerInterface;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Bundle\TwigBundle\Controller\ExceptionController as BaseExceptionController;

class ExceptionController extends BaseExceptionController
{
    public function showAction(FlattenException $exception, DebugLoggerInterface $logger = null, $format = 'html')
    {
        if ($this->container->get('request')->get('_route') == "abcRoute") {
            $appTemplate = "backend";
        } else { 
            $appTemplate = "frontend";
        }

        $template = $this->container->get('kernel')->isDebug() ? 'exception' : 'error';
        $code = $exception->getStatusCode();

        return $this->container->get('templating')->renderResponse(
            'AcmeDemoBundle:Exception:' . $appTemplate . '_' . $template . '.html.twig',
            array(
                'status_code'    => $code,
                'status_text'    => Response::$statusTexts[$code],
                'exception'      => $exception,
                'logger'         => null,
                'currentContent' => '',
            )
        );
    }
}

显然,您可能应该自定义 if 语句来测试当前路由以满足您的需求,但这应该这样做。

如果您没有创建特定的错误模板,您可能希望添加默认为正常 Twig 错误页面的代码。有关更多信息,请查看代码

Symfony\Bundle\TwigBundle\Controller\ExceptionController

Symfony\Component\HttpKernel\EventListener\ExceptionListener
于 2013-01-11T20:31:15.757 回答
0

我用 arguments: ["@twig", "%kernel.debug%"] 而不是 arguments: [@twig, %kernel.debug%]

于 2017-05-25T07:00:03.290 回答