我有一个带有自定义目录结构的微内核 Symfony 项目。
我用这个:https ://github.com/ikoene/symfony-micro
如何覆盖例如 Twig 资源(异常视图)?
Cookbook 说我应该在我的 Resources 目录中创建一个名为 TwigBundle 的目录。
我做了\AppBundle\Resources\TwigBundle\views\Exception
目录。覆盖视图似乎不起作用。
我有一个带有自定义目录结构的微内核 Symfony 项目。
我用这个:https ://github.com/ikoene/symfony-micro
如何覆盖例如 Twig 资源(异常视图)?
Cookbook 说我应该在我的 Resources 目录中创建一个名为 TwigBundle 的目录。
我做了\AppBundle\Resources\TwigBundle\views\Exception
目录。覆盖视图似乎不起作用。
感谢您使用微内核设置。以下是如何覆盖异常视图。
1.创建一个自定义的ExceptionController
首先,我们将创建自己的 ExceptionController,它扩展了基础 ExceptionController。这将允许我们覆盖模板路径。
<?php
namespace AppBundle\Controller\Exception;
use Symfony\Bundle\TwigBundle\Controller\ExceptionController as BaseExceptionController;
use Symfony\Component\HttpFoundation\Request;
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. 创建错误模板
为不同的错误代码创建模板:
在此示例中,异常模板将放置在AppBundle/Resources/views/Exception/
3.覆盖默认的ExceptionController
现在让我们指向配置中的新异常控制器。
twig:
exception_controller: app.exception_controller:showAction
我真的很喜欢您的解决方案,但我找到了另一种无需自定义异常控制器的方法。
我意识到,当您存储内核类时,会在目录的 Resources 目录中自动检查覆盖的模板。
因此,对于您的回购中的结构,它是:
/Resources/TwigBundle/views/Exception/
最后我稍微改变了目录结构,在里面有一个带有内核文件的“app”目录。就像在默认的 Symfony 项目中一样。