包含多个数组的Twig?

时间:2016-03-30 10:30:27

标签: twig

我导入模板并使用数组为占位符提供值:

  {% set stuff = {
    title: 'my title'
  }
  %}

 {% include "template.twig" with stuff %}

这工作正常但我怎么能包含2个数组呢?以下不起作用:

  {% set stuff = {
    title: 'my title'
  }
  %}

  {% set moreStuff = {
    body: 'Some body text'
  }
  %}


  {% include "template.twig" with {stuff, moreStuff} %}

1 个答案:

答案 0 :(得分:0)

这可以通过合并完成:

{% include "template.twig" with stuff|merge(moreStuff) %}

http://twig.sensiolabs.org/doc/filters/merge.html