4

我正在开发一个 php 项目并使用 twig 作为模板引擎,想知道是否有可能将使用的模板文件名/路径自动添加到 twig 模板中作为 html-comment?

这对于调试非常有用,因为我可以查看 html 代码并找出如果我想更改某些内容,我必须查看哪个树枝文件。

例如,结果应如下所示:

<!-- start tpl/layout.twig -->
<html>
<head></head>
<body>
    <!-- start tpl/header.twig -->
    <header>My header</header>
    <!-- end tpl/layout.twig -->

    <!-- start tpl/content.twig -->
    <section>
        <!-- start tpl/article.twig -->
        <article>blabla1</article>
        <!-- end tpl/article.twig -->

        <!-- start tpl/article.twig -->
        <article>xyz</article>
        <!-- end tpl/article.twig -->
    </section>
    <!-- end tpl/content.twig -->

</body>
</html>
<!-- end tpl/layout.twig -->
4

1 回答 1

0

如果它不在您的索引视图中,您可以使用以下模板名称:

{{ app.request.attributes.get('_template').get('name') }}

要获得完整路径:

{{ app.request.attributes.get('_template')}}
于 2013-09-13T09:12:36.053 回答