何我可以将值发送到树枝宏 - 在我的情况下盖子“88”? 我的宏:
{% import _self as formMacros %}
{% macro printfilesRow(filesForm, lid) %}
{{dump( lid) }} // not working ;-(
{% endmacro %}
在我的表单中使用宏:
{% set lid = 88 %}
{% for filesForm in content.picture %}
{{ formMacros.printfilesRow(filesForm, lid) }}
{% endfor %}