form_row(form.form,'attr':{'value':var})中的Twig变量

时间:2018-12-23 12:57:19

标签: php symfony twig

我尝试在form_row()中创建变量

{{ form_start(genusForm) }}
{{ form_row(genusForm.speciesCount, {
'label': variable
}) }}
{{ form_end(genusForm) }}

我尝试了{{ variable },将无法正常工作。

1 个答案:

答案 0 :(得分:0)

form_row 返回标签,输入和错误块 因此,如果要为标签添加属性,则应该使用 form_label

{{ form_label(genusForm.speciesCount, { 'attr': {'name-attr': variable}} ) }}

https://symfony.com/doc/current/reference/forms/twig_reference.html#form-label-view-label-variables