1

根据v-data-table 中自定义过滤器的 Vuetify 文档,可以通过在标题项上提供过滤器属性来自定义对特定表列的过滤。

在我的应用程序中,我想使用它来自定义单个列的过滤。对于所有其他列,我想保留默认的字符串匹配行为。

作为一个起点(参见 codepen),我提供了一个自定义过滤器,它只返回true

new Vue({
  el: '#app',
  vuetify: new Vuetify(),
  data(){
    return {
      headers: [
        {
          text: 'Car Manufacturers',
          value: 'car',
          filter(){ return true }
        },
        {
          text: 'Country of Origin',
          value: 'country'
        }
      ],
      items: [
        { car: 'Honda', country: 'Japan' },
        { car: 'Audi', country: 'Germany' },
        { car: 'Ford', country: 'USA' }
      ],
      search: ''
    }
  },
})

<div id="app">
  <v-app>
    <v-container>
      <v-text-field
        label="Search"
        v-model="search"
      >
      </v-text-field>
      <v-data-table
        :headers="headers"
        :items="items"
        :search="search"
      >
      </v-data-table>
    </v-container>
  </v-app>
</div>

我现在已经预料到,无论我输入什么搜索字符串,car列上的过滤器都会匹配所有行,因此会显示整个表格。

我观察到的是,该表仍被过滤,但仅按country列。

相反,当我将过滤器更改为返回false时,会显示一个空表。然后我会预料到,该表仅按country列过滤。

标题过滤器是如何应用的?或者,更准确地说:

对于每一行,如何组合各个列过滤器的结果以产生整行的过滤器结果?

4

1 回答 1

1

经过一番挖掘,我在关于 v-data-table 过滤的错误报告中找到了这个答案。

我仍然不明白这背后的想法,但显然,自定义列过滤器的处理方式与没有自定义过滤器的列不同:

行匹配,如果 (1) 它们匹配every()指定的自定义列过滤器,并且 (2) 它们匹配some()默认过滤器(即包含搜索字符串)。

Vuetify 中的匹配代码似乎是这样的:

  return items.filter(item => {
    // Headers with custom filters are evaluated whether or not a search term has been provided.
    // We need to match every filter to be included in the results.
    const matchesColumnFilters = headersWithCustomFilters.every(filterFn(item, search, defaultFilter))

    // Headers without custom filters are only filtered by the `search` property if it is defined.
    // We only need a single column to match the search term to be included in the results.
    const matchesSearchTerm = !search || headersWithoutCustomFilters.some(filterFn(item, search, customFilter))

    return matchesColumnFilters && matchesSearchTerm
  })
于 2020-10-18T05:17:59.030 回答