在版本 < 2.3 中,属性
data-prototype="{% filter escape %}{% include 'ManaClientBundle:Member:member_prototype.html.twig' with {'form': form.members.get('prototype')} %}{% endfilter %}"
允许原型显示为一行单元格。当然,在 2.3 中,这一行会产生错误
对象“Symfony\Component\Form\FormView”的方法“get”不存在
根据 UPGRADE-2.1.md,不推荐使用get。它不能被建议的变量替换,因为它会产生类似的错误。我怎样才能(容易?)像以前一样在 2.3 中渲染原型?使用
data-prototype="{{ form_widget(form.members.vars.prototype)|e }}"
无论 config.yml 中 twig:resources:form 的 div 或 table 设置如何,都没有提供有用的解决方案。
原型
<tr id="member-form">
<td><input class="smallform" type="radio" name="household[isHead]" value="__name__"></td>
<td>{{ form_widget(form.include, {'attr': {'class':'smallform'}}) }}</td>
<td>{{ form_widget(form.fname, {'attr': {'class':'smallform'}}) }}</td>
<td>{{ form_widget(form.sname, {'attr': {'class':'smallform'}}) }}</td>
<td>{{ form_widget(form.dob, {'attr': {'class':'smallform'}}) }}</td>
<td>{{ form_widget(form.sex, {'attr': {'class':'smallform'}}) }}</td>
<td>{{ form_widget(form.ethnicity, {'attr': {'class':'smallform'}}) }}</td>
<td><a id="removeTr" class="smallbutton" href="#" onclick="removeTr(this)">Remove</a>