如何在 Meteor 中制作带有输入字段的表格。我使用了http://autoform.meteor.com/update-each中的示例,但它们只使用 1 个输入字段。
该功能适用于以下代码:
<tbody>
{{#each persons}}
{{#autoForm id=makeUniqueID type="update" collection=Collections.Persons doc=this autosave=true}}
<tr>
<td>{{> afFieldInput name="fullName" label=false}}</td>
<td>{{> afFieldInput name="email" label=false}}</td>
<td>{{> afFieldInput name="address" label=false}}</td>
<td><button type="submit" class="btn btn-xs btn-danger">Delete</button></td>
</tr>
{{/autoForm}}
{{/each}}
</tbody>
但它在<form>
每个元素周围创建了一个元素,<tr>
并且搞砸了我的 html。正确的方法是什么?