我有一个带有实体字段的树枝模板,当我使用它两次时,它不起作用。例如:
^
如果我这样做:
<div class="control-group">
<label class="control-label">Secondary</label>
<div class="controls">
{% if entity.category and entity.category.parent %}
<span style="margin-right:5px;">{{ entity.category.parent.name }} ›</span>
{% endif %}
{{ form_errors(edit_form.categories) }}
{{ form_widget(edit_form.categories) }}
</div>
</div>
标签已写入,但我无法获得选择标记框。经过研究,我得出结论,复制一个实体是不可能的吗?