7

如何在 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。正确的方法是什么?

4

1 回答 1

1

divs 与 CSS 一起使用:

<div class="table">
  {{#each persons}}
    {{autoform class="tr"}}
      <div class="td">{{> afQuickField}}</div>
      <div class="td">{{> afQuickField}}</div>
      <div class="td">{{> afQuickField}}</div>
    {{/autoform}}
  {{/each}}
</div>

并将其设置为:

.table {
  display: table;
}

.tr {
  display: table-row;
}

.td {
  display: table-cell
}
于 2015-08-08T18:57:28.643 回答