我如何使用"自定义过滤器"在vuetify的数据表中支撑?或者如何创建自定义过滤器以按标题过滤?

时间:2017-08-14 10:08:25

标签: vue.js frontend vuetify.js

截至发布日期,我找不到任何文档来使用"自定义过滤器"数据表中的道具。

我只是想创建一个自定义过滤器来按标头过滤我的数据表。 我有一个下拉列表,当用户点击下拉菜单的其中一个选项时,它会过滤一个特定标题的列表。

实施例: 下拉选项: 食物类型:水果,肉类,蔬菜

  1. Bakchoi(蔬菜)
  2. 猪肉(肉)
  3. 鸡大腿(肉)
  4. 西瓜(水果)
  5. 如果我选择下拉菜单作为肉,它应该只显示我的猪肉和鸡腿。

2 个答案:

答案 0 :(得分:19)

查看code on GithubcustomFilter道具似乎用于覆盖用于确定filter道具如何应用于表中项目的默认方法。< / p>

默认customFilter方法将filter函数应用于每个项目对象的每个属性名称,并过滤掉任何不包含一个通过过滤器的属性名称的项目:

customFilter: {
  type: Function,
  default: (items, search, filter) => {
    search = search.toString().toLowerCase()
    return items.filter(i => (
      Object.keys(i).some(j => filter(i[j], search))
    ))
  }
},

如果您想阻止任何列包含在过滤器中,或者您希望阻止过滤掉特定行,则可能需要覆盖此功能。

您会注意到该方法还取决于search道具,它必须是一个字符串。

所有这一切,你真的不需要使用那个道具来做你想做的事。您应该创建一个计算属性,以根据您的下拉值过滤项目,并将该计算属性作为items道具传递。

以下是一个例子:

new Vue({
  el: '#app',
  data() {
    return {
      food: [
        { name: 'Bakchoi', type: 'vegetable', calories: 100 },
        { name: 'Pork', type: 'meat', calories: 200 },
        { name: 'Chicken Thigh', type: 'meat', calories: 300 },
        { name: 'Watermelon', type: 'fruit', calories: 10 },
      ],
      headers: [
        { text: 'Name', align: 'left', value: 'name' },
        { text: 'Food Type', align: 'left', value: 'type' }, 
        { text: 'Calories', align: 'left', value: 'calories' },
      ],
      foodType: null,
    };
  },
  computed: {
    filteredItems() {
      return this.food.filter((i) => {
        return !this.foodType || (i.type === this.foodType);
      })
    }
  }
})
<script src="https://unpkg.com/vue@2.4.2/dist/vue.js"></script>
<script src="https://unpkg.com/vuetify@0.15.2/dist/vuetify.js"></script>
<link rel="stylesheet" href="https://unpkg.com/vuetify@0.15.2/dist/vuetify.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons">

<div id="app">
  <v-app>  
    <v-select 
      label="Food Type" 
      :items="['vegetable', 'meat', 'fruit']"
      v-model="foodType"
    ></v-select>
    
    <v-data-table 
      :headers="headers"
      :items="filteredItems"
      hide-actions
    >
      <template slot="items" scope="{ item }">
        <td>{{ item.name }}</td>
        <td>{{ item.type }}</td>
        <td>{{ item.calories }}</td>
      </template>
    </v-data-table>
  </v-app>
</div>

答案 1 :(得分:9)

您也可以像这样使用customFilter方法,我将搜索限制在类型字段中。

&#13;
&#13;
new Vue({
    el: '#app',
    data() {
        return {
            food: [
                { name: 'Bakchoi', type: 'vegetable', calories: 100 },
                { name: 'Pork', type: 'meat', calories: 200 },
                { name: 'Chicken Thigh', type: 'meat', calories: 300 },
                { name: 'Watermelon', type: 'fruit', calories: 10 },
            ],
            headers: [
                { text: 'Name', align: 'left', value: 'name' },
                { text: 'Food Type', align: 'left', value: 'type' },
                { text: 'Calories', align: 'left', value: 'calories' },
            ],
            search: '',

        };
    },
    methods: {
        customFilter(items, search, filter) {

            search = search.toString().toLowerCase()
            return items.filter(row => filter(row["type"], search));

        }
    }
})
&#13;
<script src="https://unpkg.com/vue@2.4.2/dist/vue.js"></script>
<script src="https://unpkg.com/vuetify@0.15.2/dist/vuetify.js"></script>
<link rel="stylesheet" href="https://unpkg.com/vuetify@0.15.2/dist/vuetify.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons">

<div id="app">
    <v-app>
        <v-select
                label="Food Type"
                :items="['vegetable', 'meat', 'fruit']"
                v-model="search"
        ></v-select>

        <v-data-table
                :headers="headers"
                :items="food"
                :search="search"
                :custom-filter="customFilter"
                hide-actions
        >
            <template slot="items" scope="{ item }">
                <td>{{ item.name }}</td>
                <td>{{ item.type }}</td>
                <td>{{ item.calories }}</td>
            </template>
        </v-data-table>
    </v-app>
</div>
&#13;
&#13;
&#13;