使用变异来过滤vuejs?

时间:2019-06-27 01:54:37

标签: javascript vuejs2 vuex vuetify.js

我正在尝试使用vuex过滤掉我的表。我是vuex的新手,因此尝试了解它的工作原理。我有一个数据表,它是一个组件,而搜索字段是一个单独的组件。我正在尝试从表中过滤数据,但是如何使用vuex呢?

我制作了一个Codepen进行说明,但是我不知道如何在Codepen中使用store或制作单独的组件: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: {

           }

谢谢。

1 个答案:

答案 0 :(得分:2)

您可以从商店的状态获取search并将其绑定到表的组件:

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

然后您可以在v-data-table中使用search

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

要使用computed使用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
  }
}
相关问题