在包含路径中使用 Twig 变量

Use Twig variable in include path

我想在包含行中使用 Twig 变量,但它不起作用:
{% include 'folder/{{ component }}.twig' %}

我收到错误: Unable to find template "folder/{{ component }}.twig"

谁能帮帮我?

谢谢!

我刚在这里找到答案: https://groups.google.com/forum/#!topic/twig-users/zfnxC16gHx0

正确的语法是: {% include 'folder/' ~ component ~ '.twig' %}