Bootstrap Vue,<b-table> 带有基于 table 的绑定项数据的复选框输入

Bootstrap Vue, <b-table> with an checkbox input based on the bound item data for the table

我有一个 table,里面装满了数据。我在要绑定到 b-table 中的复选框的数据上有一个 selected 属性。我似乎不知道该怎么做。

我的数据:

data: () => ({
  tableData: [
    {
      title: "title01",
      desc: "desc01",
      selected: false
    },
    {
      title: "title02",
      desc: "desc02",
      selected: false
    },
  ],
  tableColumns: [
    { key: "selected", label: "", sortable: false }
    { key: "title", label: "Title", sortable: false },
    { key: "desc", label: "Description", sortable: false }
})

html:

<b-table id="myTabel"
  hover
  striped
  :items="tableData"
  :fields="tableColumns">
  <template slot="selected" slot-scope="row">
    <b-form-group>
      <input type="checkbox" v-model="How_To_Bind_To_Object_Prop?">
    </b-form-group>
  </template>
</b-table>

我这辈子都无法将 v-model 设置为实际绑定到 table 数据。 v-model="tableData.selected" 将所有复选框绑定到所有数据对象。所以,如果你检查一个,你检查所有,反之亦然。我只是不知道如何将它仅绑定到该行的数据。

我可以通过使用更传统的 HTML 并使用 Vue 的 v-for 循环遍历 tableData 来绑定每个 table 行。但是,我们正在尝试将大部分(如果不是全部)表单转移到使用 bootstrap-vue。

所以,这个效果很好:

<table>
    <thead>
        <tr>
            <th :key="key" v-for="(tableColumn, key) in tableColumns">
                {{ tableColumn.label }}
            </th>
        </tr>
    </thead>
    <tbody>
        <tr :key="key" v-for="(tableRow, key) in tableData">
            <td>
                <input type="checkbox" 
                    v-model="tableRow.selected">
            </td>
            <td>
                {{ tableRow.title }}
            </td>
            <td>
                {{ tableRow.desc }}
            </td>
        </tr>
    </tbody>
</table>

您可以在范围内的插槽内按如下方式访问行项目,并将嵌套的复选框绑定到 selected 属性:

<template v-slot:cell(selected)="row">
   <b-form-group>
       <input type="checkbox" v-model="row.item.selected" />
   </b-form-group>
</template>

有关详细信息,请参阅 Table - Custom rendering 文档。