首页 > 解决方案 > 如何使用 Vuex 创建模块并使用 mapState() 获取数据

问题描述

我尝试在模块中分离我的 Vuex 代码,但我无法从mapState().

创建模块和使用映射的最佳方式是什么?

我有一个商店文件夹:

├── store
│   └── index.js
|   └── testStore.js
|

index.js我有:

import Vue from "vue";
import Vuex from "vuex";

import { testStore } from './testStore'

Vue.use(Vuex);

export default new Vuex.Store({
  modules : {
    testStore,
  }
});

testStore.js我有:

export const testStore  = 
{
    namespaced: true,
    state,
    mutations,
}


const state = 
{
    social: false,
    normal: true,

};
const mutations = 
{
    // setters
    setSocial(state, payload) {
      state.social = payload;
    },
    setNormal(state, payload) {
        state.normal = payload;
    },
};

我有一个测试组件可以尝试:(我使用 Vuetify)

testComponent.vue

<template>
  <v-container>
    <v-layout justify-center>
        <v-btn class="primary" @click="displaydata">test</v-btn>
    </v-layout>
  </v-container>
</template>

<script>

import { mapState, mapMutations } from 'vuex'

export default {
    computed: {
        ...mapState('testStore',['normal','social']),
    },
    methods: {
        ...mapMutations('testStore',['setNormal','setSocial']),

        displaydata() {
            // eslint-disable-next-line
            console.log(this.normal);
            // eslint-disable-next-line
            console.log(this.social);
        } 
    }
};
</script>

当我单击“测试”按钮时,控制台显示:undefined.

那么,有什么问题呢?:(

标签: javascriptvue.jsvuex

解决方案


这有一个非常简单的解决方案(我没见过):

在 中testStore.jsexport const testStore是在开头。

所以,右边testStore.js非常相似,但export最后是:


const state = 
{
    social: false,
    normal: true,

};
const mutations = 
{
    // setters
    setSocial(state, payload) {
      state.social = payload;
    },
    setNormal(state, payload) {
        state.normal = payload;
    },
};

export const testStore  = 
{
    namespaced: true,
    state,
    mutations,
}


推荐阅读