【问题标题】:Using mutation to filter in vuejs?在 vuejs 中使用突变过滤?
【发布时间】:2019-06-27 01:54:37
【问题描述】:

我正在尝试使用 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: {

           }

提前谢谢你。

【问题讨论】:

  • 这可能不是最适合 vuex 的。数据需要在 vuex 中,然后您将使用操作(可选)和突变来修改过滤器,这将更新结果。好处是其他组件可以访问过滤后的结果,但在这种情况下,这似乎不是您在该组件之外需要的东西。此外,您的 vuetify 表已经在内部处理搜索,因此不需要它,并且不清楚您是想存储搜索以供将来使用,还是在 vuex 中进行过滤。
  • @Daniel 我想让它在 vuex 中执行过滤并将其传递给数据表。

标签: javascript vuejs2 vuex vuetify.js


【解决方案1】:

您可以从 store 的 state 中获取 search 并将其绑定到 table 的组件:

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

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

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

要使用computed 使用 2-way 变异,您需要使用 get 和 set

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

然后在您的商店中创建突变

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

【讨论】:

  • 所以我不需要改变状态?只有状态本身就可以吗?
  • 您只需要在搜索组件中改变状态。在表格组件中,您应该只读。
  • 我收到一条错误消息,指出搜索已分配给文本字段,但没有设置器。
  • 非常感谢。这正是我所需要的。如果您不介意,请解释一下如何、何时以及为什么使用 2 路突变?
  • 您可以在这里阅读更多内容itnext.io/…
猜你喜欢
  • 1970-01-01
  • 2020-09-15
  • 1970-01-01
  • 2020-08-03
  • 2016-07-01
  • 2017-06-28
  • 2020-09-13
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多