0

我正在尝试将我的用户转发到位于另一个捆绑包中的自定义 404 页面。我已经修改了我的页面ExceptionController并尝试forward()将页面转到我的另一个错误控制器,该控制器被路由到我的自定义 404 页面。

我收到错误: Fatal error: Call to undefined method Symfony\Bundle\TwigBundle\Controller\ExceptionController::forward() in /home/notroot/www/store/vendor/symfony/symfony/src/Symfony/Bundle/TwigBundle/Controller/ExceptionController.php on line 50

我正在修改文件store\vendor\symfony\symfony\src\Symfony\Bundle\TwigBundle\Controller\ExceptionController.php

我在 ExceptionController.php 中添加了以下几行:

if ($code == '404') {
    $response = $this->forward('ItemBundle:Error:pageNotFound');
    return $response;
}

异常控制器.php:

public function showAction(FlattenException $exception, DebugLoggerInterface $logger = null, $format = 'html')
{
    $this->container->get('request')->setRequestFormat($format);

    $currentContent = $this->getAndCleanOutputBuffering();

    $templating = $this->container->get('templating');
    $code = $exception->getStatusCode();


    if ($code == '404') {
        $response = $this->forward('ItemBundle:Error:pageNotFound');
        return $response;
    }

    return $templating->renderResponse(
        $this->findTemplate($templating, $format, $code, $this->container->get('kernel')->isDebug()),
        array(
            'status_code'    => $code,
            'status_text'    => isset(Response::$statusTexts[$code]) ? Response::$statusTexts[$code] : '',
            'exception'      => $exception,
            'logger'         => $logger,
            'currentContent' => $currentContent,
        )
    );
}
4

2 回答 2

4

Symfony/Bundle/TwigBundle/Controller/ExceptionController不扩展通常在用户包中使用的框架控制器。此外,直接编辑存储在vendor目录中的任何内容也不是一个好主意。

于 2013-01-11T00:53:07.440 回答
0

我用forward()它指向的快捷方式替换了函数,如文档中所述。

if ($code == '404') {
    $httpKernel = $this->container->get('http_kernel');
    $response = $httpKernel->forward(
        'ItemBundle:Error:pageNotFound'
    );
    return $response;
}
于 2013-01-11T19:16:57.977 回答