我有这个自定义表单域
{# src/Acme/DemoBundle/Resources/views/Form/fields.html.twig #}
{% block gender_widget %}
{% spaceless %}
{% if expanded %}
<ul {{ block('widget_container_attributes') }}>
{% for child in form %}
<li>
{{ form_widget(child) }}
{{ form_label(child) }}
</li>
{% endfor %}
</ul>
{% else %}
{# just let the choice widget render the select tag #}
{{ block('choice_widget') }}
{% endif %}
{% endspaceless %}
{% endblock %}
这将呈现复选框。但我无法找到如何获得复选框的值
即child.form.value
不工作。
假设我有在表单中被命名为任务的实体。
我怎样才能得到taskid的值。
就像是
child.form.vars.task.id