我想在包含行中使用Twig变量,但它不起作用:
{% include 'folder/{{ component }}.twig' %}
我收到错误:
Unable to find template "folder/{{ component }}.twig"
谁能帮我吗?
谢谢!
pas*_*ert 10
我刚刚在这里找到了答案:https: //groups.google.com/forum/#!topic/twig-users/zfnxC16gHx0
正确的语法是:
{% include 'folder/' ~ component ~ '.twig' %}