如何在微内核 Symfony 中覆盖捆绑资源



我有带有自定义目录结构的微内核Symfony项目。

我用了这个:https://github.com/ikoene/symfony-micro

如何覆盖例如 Twig 资源(异常视图)?

食谱说我应该在我的资源目录中创建一个名为TwigBundle的目录。

我做了AppBundleResourcesTwigBundleviewsException目录。覆盖视图似乎不起作用。

感谢您使用微内核设置。下面介绍如何重写异常视图。

1. 创建自定义异常控制器

首先,我们将创建自己的 ExceptionController 来扩展基本的 ExceptionController。这将允许我们覆盖模板路径。

    <?php
    namespace AppBundleControllerException;
    use SymfonyBundleTwigBundleControllerExceptionController as BaseExceptionController;
    use SymfonyComponentHttpFoundationRequest;
    class ExceptionController extends BaseExceptionController
    {
        /**
          * @param Request $request
          * @param string $format
          * @param int $code
          * @param bool $showException
          *
          * @return string
          */
         protected function findTemplate(Request $request, $format, $code, $showException)
         {
             $name = $showException ? 'exception' : 'error';
             if ($showException && 'html' == $format) {
                 $name = 'exception_full';
             }
             // For error pages, try to find a template for the specific HTTP status code and format
             if (!$showException) {
                 $template = sprintf('AppBundle:Exception:%s%s.%s.twig', $name, $code, $format);
                 if ($this->templateExists($template)) {
                     return $template;
                 }
             }
             // try to find a template for the given format
             $template = sprintf('@Twig/Exception/%s.%s.twig', $name, $format);
             if ($this->templateExists($template)) {
                 return $template;
             }
             // default to a generic HTML exception
             $request->setRequestFormat('html');
             return sprintf('@Twig/Exception/%s.html.twig', $showException ? 'exception_full' : $name);
         }
    }

2. 创建错误模板

为不同的错误代码创建模板:

  • 错误.html.twig
  • 错误403.html.twig
  • 错误404.html.twig

在此示例中,异常模板将放置在AppBundle/Resources/views/Exception/

3. 覆盖默认异常控制器

现在让我们指向配置中的新异常控制器。

twig: exception_controller: app.exception_controller:showAction

我真的很喜欢你的解决方案,但我找到了另一种在没有自定义异常控制器的情况下做到这一点的方法。

我意识到,当您存储内核类时,对覆盖模板的自动附加检查发生在目录中的目录资源中。

因此,对于存储库中的结构,它是:

/Resources/TwigBundle/views/Exception/

最后,我稍微更改了目录结构,使其具有一个包含内核文件的"app"目录。就像在默认的Symfony项目中一样。

相关内容

  • 没有找到相关文章

最新更新