gpt4 book ai didi

php - Symfony2 : Twig: Default template file in custom location

转载 作者:可可西里 更新时间:2023-11-01 12:41:51 25 4
gpt4 key购买 nike

我尝试加载一个简单的 base.html.twig 模板文件,该文件已从 symfony 的默认位置 app/Resources/views/ 移动到自定义位置 主题/.

模板文件包含:

    <!DOCTYPE html>
<html>
<head>
...
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>

通过 Controller Acme\Core\CoreBundle\Controller 使用特定于 Controller 的模板扩展上述模板文件

    {% extends '::base.html.twig' %}
{% block body %}
Hello world!
{% endblock %}

导致错误提示 Unable to find template "::base.html.twig"in "AcmeCoreCoreBundle:Default:index.html.twig".

如何告诉 symfony 在全局空间中哪里可以找到模板文件?

提前致谢。

最佳答案

有一个 native 功能可以很好地完成您想要的事情。本质上,您可以像这样在 app/config.yml 中的 twig 配置中添加一个 twig 命名空间:

twig:
# ...
paths:
"%kernel.root_dir%/../vendor/acme/foo-bar/templates": foo_bar

这会为文件夹 vendor/acme/foo-bar/templates 创建一个别名,然后您可以使用它从 Controller 呈现您的模板:

return $this->render(
'@foo_bar/template.html.twig',
$data
);

或来自其他 Twig 模板

{% include '@foo_bar/template.html.twig' %}

来源:官方食谱http://symfony.com/doc/current/cookbook/templating/namespaced_paths.html

关于php - Symfony2 : Twig: Default template file in custom location,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12952309/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com