vuetify Datatable每次单击sort时重置搜索结果

时间:2018-03-21 12:54:59

标签: vue.js vuetify.js

我无法在我的数据表中过滤当前可见结果,而不会触发新的api调用。每次我点击其中一列时,datatable都会对同一页面进行新的API调用,因此它甚至不会将任何参数附加到api调用,如命令desc等。那么如何在不创建新内容的情况下过滤我的结果api电话

我的代码:

  <v-card>
    <v-card-title>
      My data
      <v-spacer></v-spacer>
       <v-flex xs2>
      <v-text-field
        append-icon="search"
        label="Search data"
        single-line
        hide-details
        v-model="search"
      ></v-text-field>
      </v-flex>
    </v-card-title>
    <v-data-table
        :headers="headers"
        :items="items"
        :total-items="pagination.totalItems"
        :pagination.sync="pagination"
        :search="search"
        item-key="combo_id"
        :rows-per-page-items="[50, 50]"
        hide-actions
      >
      <template slot="items" slot-scope="props">
        <tr @click="getCombo(props.item.combo_id); props.expanded = !props.expanded">
        <td class="text-xs-left">{{ props.item.data }}</td>
        <td class="text-xs-left">{{ props.item.data2 }}</td>
        <td class="text-xs-left">{{ props.item.data3 }}</td>
        <td class="text-xs-left">{{ props.item.data4 }}</td>
        <td class="text-xs-left">{{ props.item.data5 }}</td>
        <td class="text-xs-left">{{ props.item.data6 }}</td>
        <td class="text-xs-left">{{ props.item.data7 }}</td>
       </tr>
      </template>
      <template slot="expand" slot-scope="props">
        <v-card flat>
          <v-card-text>
            <v-btn color="primary" dark @click.stop="commentDialog = true">Show comments</v-btn> Tags: <strong>{{ comboItemTags }}</strong>
            <v-btn color="warning" class="right" @click.stop="editDialog = true">Edit system</v-btn>
          </v-card-text>
        </v-card>
      </template>
    </v-data-table>
    <div class="text-xs-center pt-2">
      <v-pagination v-model="pagination.page" :length="pages" :total-visible="10"></v-pagination>
    </div>
  </v-card>

    data () {
      return {
      search: '',
      items: [],
      pagination: {
        page: 1,
        rowsPerPage: 50,
        totalItems: 0
      },
...
...
},
watch: {
        pagination: {
            handler() {
                this.getAllSystemsNewPage(this.pagination.page); //Fetch new data and push into items
            },
            deep: true
        }
    },

1 个答案:

答案 0 :(得分:1)

如果您从服务器获取数据并观看分页对象,则假定所有处理(分页,排序,搜索)都在服务器端进行。

this examplegetDataFromApi中承诺内发生的一切都是模拟服务器上发生的事情。您需要将分页对象中的相关数据作为参数传递给服务器API调用并返回正确的项目。

编辑:

如何将分页数据传递到后端是在vuetify的范围之外,取决于后端的外观。但是一个简单的例子是这样的:

getDataFromApi () {
  const { sortBy, descending, page, rowsPerPage } = this.pagination
  const query = `page=${page}&sort_by=${sortBy}&sort_order=${descending ? 'desc' : 'asc'}&rows_per_page=${rowsPerPage}`
  axios.get(`/api/endpoint?${query}`).then(...)
}