symfony2从onKernelRequest抛出异常返回空白页面

时间:2013-06-06 10:53:05

标签: symfony exception-handling request event-listener custom-error-pages

我有一个连接到kernel.request事件的事件监听器。在onKernel请求方法中,我正在根据子域进行一些验证。 如果此验证失败,我想抛出一些异常,如AccessDenied或其他东西。

问题是,当我抛出异常时,它显示一个空白页而不是我的自定义错误页。

如果我查看我的prod.log文件,我会收到以下信息:

[2013-06-06 11:08:38] request.ERROR: Exception thrown when handling an exception (Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException: This route needs to be accessed with a subdomain) [] []
[2013-06-06 11:16:32] request.ERROR: Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException: "This route needs to be accessed with a subdomain" at (...) line 86 [] [] 

我缺少什么? 谢谢你的帮助

1 个答案:

答案 0 :(得分:3)

在kernel.request事件期间没有捕获异常。您可以改为回复:

class SubdomainSubscriber implements EventSubscriberInterface
{

    public static function getSubscribedEvents()
    {
        return [
            'kernel.request' => 'onRequest',
        ];
    }

    public function onRequest(GetResponseEvent $event)
    {
        if (!$subdomainValid) {
            $event->setResponse(new Response('Invalid subdomain!', 403));
        }
    }
}

虽然这个例子是EventSubscriber,但它也适用于听众。