0

別のバンドルにあるカスタム404ページにユーザーを転送しようとしています。私は自分のページを変更し、カスタム404ページにルーティングされる他のエラーコントローラーにページを移動ExceptionControllerしようとしました。forward()

エラーが発生しました: 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;
}

ExceptionController.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 に答える