我有一个基于国家对象数组填充的表,并且我还有一个搜索栏,该搜索栏将通过对国家数组进行实时过滤并仅显示部分或完全与用户匹配的国家/地区与该表进行交互在搜索栏中输入。
问题是我是vue的新手,我在弄清楚如何使其工作方面遇到困难。如果有人可以查看我的代码并将我直接指向正确的方向,或者我做错了那将是很棒的事情!
现在,我的逻辑是我在文本字段上具有一个v模型,该模型会将用户输入的任何内容绑定到一个名为“ filterBy”的数据值。
我的理解可能是错误的,但是我现在想的是,通过在calculated中创建一个filteredCountries函数,并且由于只要该函数中的变量发生更改,compute就会运行,因此只要在搜索栏中键入某些内容,它将自动被调用,因此过滤了countrys数组,表格将被重新呈现。
<template>
<div class="countries-table">
<div class="countries-search-bar">
<v-flex xs12 sm6 md3>
<v-text-field
v-model="filterBy"
placeholder="Search by country name or alpha2"
/>
</v-flex>
</div>
<v-data-table
:headers="headerValues"
:items="items"
:pagination.sync="pagination"
item-key="id"
class="elevation-1"
:rows-per-page-items="[300]"
>
<template v-slot:headers="props">
<tr>
<th
v-for="header in props.headers"
:key="header.text"
:class="[
'column sortable',
pagination.descending ? 'desc' : 'asc',
header.value === pagination.sortBy ? 'active' : ''
]"
@click="changeSort(header.value)"
>
<v-icon small>arrow_upward</v-icon>
{{ header.text }}
</th>
<th>
Edit
</th>
</tr>
</template>
<template v-slot:items="props">
<tr :active="props.selected" @click="props.selected = !props.selected">
<td>{{ props.item.country_alpha2 }}</td>
<td class="text-xs-right">{{ props.item.country_name }}</td>
<boolean-cell
custom-class="text-xs-right"
:input="props.item.is_active"
:output="{ true: 'Yes', false: 'No' }"
></boolean-cell>
<date-cell
custom-class="text-xs-right"
:input="props.item.updated_at"
></date-cell>
<td class="text-xs-right" @click="triggerEdit(props.item)">
<v-icon class="edit-icon">edit</v-icon>
</td>
</tr>
</template>
</v-data-table>
</div>
</template>
<script>
import BooleanCell from '~/components/global-components/Table/BooleanCell'
import DateCell from '~/components/global-components/Table/DateCell'
export default {
components: {
BooleanCell,
DateCell
},
props: {
headerValues: {
type: Array,
required: true
},
items: {
type: Array,
required: true
}
},
computed: {
filteredCountries() {
return this.items.filter(country => {
return country.country_name.includes(this.filterBy)
})
}
},
data() {
return {
pagination: {
sortBy: 'country_alpha2'
},
filterBy: ''
}
},
methods: {
changeSort(headerValue) {
if (this.pagination.sortBy === headerValue) {
this.pagination.descending = !this.pagination.descending
} else {
this.pagination.sortBy = headerValue
this.pagination.descending = false
}
}
}
}
</script>
尽管我在搜索栏中输入了内容,但该表与我拥有的当前代码相同。
有人可以告诉我我在做什么错吗?
答案 0 :(得分:1)
对于v-data-table
个项目,您正在使用items
作为道具。您应该使用filteredCountries
计算属性。