首頁  >  問答  >  主體

嘗試從 vuex 存取資料時出現問題

我嘗試將水資料放入 Vuex 中,一切正常,直到我嘗試存取我的資料數組。

const store = new Vuex.Store({
    state: {
        categories: {}
    },
    getters: {
        categories: (state) => {
            console.log(state.categories);
            return state.categories;
        }
    },
    mutations: {
        set_categories: (state, data) => {
            state.categories = data
        }
    },
    actions: {
        get_categories: (context) => {
            axios.get(`${baseUrl}/api/categories?pagination=0`)
                .then((response) => {
                    context.commit('set_categories', response.data);
                });
        }
    }
});

這是 vista 中的所有程式碼,這就是我在 vista 元件中存取它的方式

mounted() {

        this.$store.dispatch('get_categories'); 
    },
computed: {
        stateCategories() { 
            return this.$store.state.categories 
        }
    },
console.log(this.stateCategories)

但是我的資料沒有出現。 你知道問題出在哪裡嗎? 我與vue工具開發人員進行了測試,我的資料出現在vuex

P粉916760429P粉916760429218 天前431

全部回覆(1)我來回復

  • P粉333186285

    P粉3331862852024-04-04 09:46:27

    嘗試等待回應:

    async mounted() {
        await this.$store.dispatch('get_categories'); 
    },

    回覆
    0
  • 取消回覆