我导入模板并使用数组为占位符提供值:
{% 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} %}
答案 0 :(得分:0)
这可以通过合并完成:
{% include "template.twig" with stuff|merge(moreStuff) %}