我想在一个twig块中生成表头,并在页面上重用它,这个页面有大约5个不同的表,大致相同的标题.块代码是这样的:
原文链接:https://www.f2er.com/php/139868.html{% block table_headers %} <th>Fiscal Year</th> <th>End Date</th> <th>Period Length</th> {% for item in result.FinancialStatements.COAMap.mapItem %} {% if item.statementType == statementType %} <th>{{ item._ }} ({{ item.coaItem }})</th> {% endif %} {% endfor %} {% endblock %}
上面代码的关键是
{% if item.statementType == statementType %}
我想传递statementType作为参数,我正在渲染块,像这样:
{% render block.table_headers with {'statementType': 'INC'} %}
但这不行.我想保持块和它的渲染在同一个文件(但不同的块),为概念的接近.
甚至可以使用这样的块吗?我看过Symfony2文档,找不到任何可以做到这一点的东西,但是对我来说似乎是一个明显的使用方法.