Vuetify 数据表:扩展行时获取数据

Vuetify Data Tables: Fetch data when expanding a row

我有一个带有可扩展行的 Vuetify 数据 table。每行与客户的订单相关联,该订单包含他们想要测试的样品。

目前,我正在检索包含所有样本的所有订单,但加载所有信息的时间太长。

因此,当我展开一行时,我希望能够执行 API 调用来检索应该在该特定展开部分中显示的样本,而不是为每个订单检索所有样本订单。

我已尽我所能进行研究,但走到了死胡同。这是我目前所在的位置:

<v-data-table
  :headers="orders_headers"
  :items="orders"
  show-expand
  :single-expand="true"
  :expanded.sync="expanded"
>

  <!-- Expand Buttons -->
  <template v-slot:item.data-table-expand="{ item, isExpanded, expand }">
    <v-btn @click="expand(true)" v-if="!isExpanded">Expand</v-btn>
    <v-btn @click="expand(false)" v-if="isExpanded">close</v-btn>
  </template>

  <!-- Expanded Data -->
  <template v-slot:expanded-item="{ headers, item }">
    <td :colspan="headers.length">

      <table v-for="(sample, index) in item.samples" :key="index">
        <tr>
          <th>Sample Acc</th>
          <td>{{ sample.sample_accession }}</td>
        </tr>
        <tr>
          <th>Sample Status</th>
          <td>{{ sample.sample_status }}</td>
        </tr>
      </table>

    </td>
  </template>
</v-data-table>

我想我可能是在写这篇文章的时候想到的

当我输入这些内容时,我意识到我可能需要做什么。我需要向展开按钮添加一个方法调用,然后在该方法中将结果设置为 expandedSamples 并用它替换 item.samples

与此同时,如果有人有任何更好的解决方案,我很乐意听到。否则,我会 post 我的解决方案,以防其他人试图尝试类似的事情。

奖金

有人知道是否有一种方法可以在不替换默认值 icons/functionality 的情况下利用展开事件,或者有一种方法可以在使用 v-slot:item.data-table-expand 时包含原始 icons/functionality 吗?

目前,当我使用 v-slot:item.data-table-expand 时,我必须重新添加按钮,我失去了 V 形和动画。

这是我的问题的基本解决方案。

<v-data-table
  :headers="orders_headers"
  :items="orders"
  show-expand
  :single-expand="true"
  :expanded.sync="expanded"
>

  <!-- Expand Buttons -->
  <template v-slot:item.data-table-expand="{ item, isExpanded, expand }">
    <v-btn @click="expand(true); getSamples(item.id)" v-if="!isExpanded">Expand</v-btn>
    <v-btn @click="expand(false)" v-if="isExpanded">close</v-btn>
  </template>

  <!-- Expanded Data -->
  <template v-slot:expanded-item="{ headers, item }">
    <td :colspan="headers.length">

      <table v-for="(sample, index) in expandedOrderDetails" :key="index">
        <tr>
          <th>Sample Acc</th>
          <td>{{ sample.sample_accession }}</td>
        </tr>
        <tr>
          <th>Sample Status</th>
          <td>{{ sample.sample_status }}</td>
        </tr>
      </table>

    </td>
  </template>
</v-data-table>

<script>
methods: {
  getSamples(orderId) {
    // Perform API call
    this.expandedOrderDetails = response.data;
  },
}
</script>

经过数小时的开发,我们的项目负责人决定他希望每一行都与每个样本而不是订单相关联。因此不再需要扩展。

为了以后遇到同样问题的读者,请使用数据的 @item-expanded 事件-table 按需延迟加载项目详细信息(或子数据)。将 item-expanded 事件连接到加载数据的方法(例如 loadDetails),然后将响应合并到原始项目数组中。

这是一个例子...

  <v-data-table
    :headers="headers"
    :items="items"
    show-expand
    single-expand
    item-key="name"
    :search="search"
    @item-expanded="loadDetails">
    <template v-slot:expanded-item="{ headers, item }">
        <td :colspan="headers.length">
           <table v-for="(sample, index) in items.samples" :key="index">
            <tr>
              <th>Sample Acc</th>
              <td>{{ sample.sample_accession }}</td>
            </tr>
           </table>
        </td>
    </template>
  </v-data-table>

  methods: {
    loadDetails({item}) {
        axios.get('http.../' + item.id)
            .then(response => {
              item.samples = response.data[0]
        })
    }
  }

https://codeply.com/p/d5XibmqjUh