Twig使用函数多参数

时间:2015-02-24 13:35:12

标签: symfony templates inheritance twig

我正在寻找使用功能" {%use%}"在树枝模板中使用多个参数。

所有页面模板

{% use "common.html.twig" with 
    container as containerParent,
    title as titleParent
%}
{# Some code ... #}

common.html.twig

{% block title %}{{ block(titleParent) }} - Admin{% endblock %}
{% block container %}
    {# Some code ... #}
        {{ block(containerParent) }}
    {# Some code ... #}
{% endblock %}

当我尝试时,我的块容器和标题不会被修改。

也许我没有理解这份文件? http://twig.sensiolabs.org/doc/tags/use.html

我只想访问我的twig文件中的函数twig {{parent()}} {} use ...%}

有什么建议吗?

对不起我的英语,我正在学习......

0 个答案:

没有答案