gpt4 book ai didi

javascript - 在vuejs中使用mutation来过滤?

转载 作者:行者123 更新时间:2023-12-01 00:53:19 25 4
gpt4 key购买 nike

我正在尝试使用 vuex 过滤掉我的表。我是 vuex 的新手,所以想了解它到底是如何工作的。我有一个数据表,它是一个组件,还有一个搜索字段,它是一个单独的组件。我正在尝试从表中过滤数据,但是如何使用 vuex 来过滤数据?

我制作了一个代码笔用于说明,但我不知道如何在代码笔中使用商店或制作单独的组件:https://codepen.io/anon/pen/pXWGpG?editors=1010 。希望这能让您了解我想要实现的目标。

在我的搜索字段组件中,我有:

   <template>
<v-text-field
v-model="search"
append-icon="search"
label="Search"
single-line
hide-details
></v-text-field>
</template>

<script>
export default {
data() {
return {

}
},

computed: {
search() {
return this.$store.state.search
}
}
</script>

在我的表格组件中:-

       <div id="app">
<v-app id="inspire">
<v-card>
<v-card-title>
Nutrition
<v-spacer></v-spacer>
</v-card-title>
<v-data-table
:headers="headers"
:items="desserts"
:search="search"
>
<template slot="items" slot-scope="props">
<td>{{ props.item.name }}</td>
<td class="text-xs-right">{{ props.item.calories }}</td>
<td class="text-xs-right">{{ props.item.fat }}</td>
<td class="text-xs-right">{{ props.item.carbs }}</td>
<td class="text-xs-right">{{ props.item.protein }}</td>
<td class="text-xs-right">{{ props.item.iron }}</td>
</template>
<v-alert slot="no-results" :value="true" color="error"
icon="warning">
Your search for "{{ search }}" found no results.
</v-alert>
</v-data-table>
</v-card>
</v-app>
</div>


new Vue({
el: '#app',
data () {
return {
headers: [
{
text: 'Dessert (100g serving)',
align: 'left',
sortable: false,
value: 'name'
},
{ text: 'Calories', value: 'calories' },
{ text: 'Fat (g)', value: 'fat' },
{ text: 'Carbs (g)', value: 'carbs' },
{ text: 'Protein (g)', value: 'protein' },
{ text: 'Iron (%)', value: 'iron' }
],
desserts: [
{
value: false,
name: 'Frozen Yogurt',
calories: 159,
fat: 6.0,
carbs: 24,
protein: 4.0,
iron: '1%'
},
{
value: false,
name: 'Ice cream sandwich',
calories: 237,
fat: 9.0,
carbs: 37,
protein: 4.3,
iron: '1%'
},
{
value: false,
name: 'Eclair',
calories: 262,
fat: 16.0,
carbs: 23,
protein: 6.0,
iron: '7%'
},
{
value: false,
name: 'Cupcake',
calories: 305,
fat: 3.7,
carbs: 67,
protein: 4.3,
iron: '8%'
},
{
value: false,
name: 'Gingerbread',
calories: 356,
fat: 16.0,
carbs: 49,
protein: 3.9,
iron: '16%'
},
{
value: false,
name: 'Jelly bean',
calories: 375,
fat: 0.0,
carbs: 94,
protein: 0.0,
iron: '0%'
},
{
value: false,
name: 'Lollipop',
calories: 392,
fat: 0.2,
carbs: 98,
protein: 0,
iron: '2%'
},
{
value: false,
name: 'Honeycomb',
calories: 408,
fat: 3.2,
carbs: 87,
protein: 6.5,
iron: '45%'
},
{
value: false,
name: 'Donut',
calories: 452,
fat: 25.0,
carbs: 51,
protein: 4.9,
iron: '22%'
},
{
value: false,
name: 'KitKat',
calories: 518,
fat: 26.0,
carbs: 65,
protein: 7,
iron: '6%'
}
]
}
}
})

在我的 store.js 文件中

     state: {
search: ''
},
mutations: {

}

提前谢谢您。

最佳答案

您可以从商店的状态获取搜索并将其绑定(bind)到表的组件:

computed: {
search() {
return this.$store.state.search
}
}

然后就可以在v-data-table中使用搜索

<v-data-table
:headers="headers"
:items="desserts"
:search="search"
/>

要使用计算来使用2路变异,您需要使用get和set

computed: {
search: {
get () {
return this.$store.state.search
},
set (value) {
this.$store.commit('updateSearch', value)
}
}
}

并在您的商店中创建突变

mutations: {
updateSearch (state, payload) {
state.search = payload
}
}

关于javascript - 在vuejs中使用mutation来过滤?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56782917/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com