从应用程序目录导入宏模板

发布于 2024-12-23 06:20:56 字数 347 浏览 1 评论 0原文

我试图从 app/Resources/views 目录导入一些宏,但 Symfony 似乎找不到模板。

我尝试了以下方法,它们都返回错误无法找到模板

{% import '::macros.twig' as macros %}
{% import '/app/Resources/views/macros.twig' as macros %}
{% import '/app/Resources/views/macros.twig' as macros %}

如何从 app/Resources/views 导入宏?

I'm trying to import some macros from the app/Resources/views directory, but Symfony doesn't seem to find the template.

I tried the following methods, all of them return an error Unable to find template.

{% import '::macros.twig' as macros %}
{% import '/app/Resources/views/macros.twig' as macros %}
{% import '/app/Resources/views/macros.twig' as macros %}

How can I import macros from app/Resources/views?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

惜醉颜 2024-12-30 06:20:56

我想通了。文件名必须具有扩展名 .html.twig 才能正常工作。

I figured it out. The file name must have an extension .html.twig for this to work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文