Vuex 模塊化+命名空間後, 如何調用其餘模塊的 state, actions, mutations, getters ?

因爲 Vuex 使用了單一狀態樹,應用的全部狀態都包含在一個大對象中。那麼,隨着應用的不斷擴展,store 會變得很是臃腫。javascript

爲了解決這個問題,Vuex 容許咱們把 store 分 module(模塊)。每個模塊包含各自的狀態、mutation、action 和 getter。vue

那麼問題來了, 模塊化+命名空間以後, 數據都是相對獨立的, 若是想在模塊 A 調用 模塊 B 的state, actions, mutations, getters, 該腫麼辦?java

假設有這麼兩個模塊:vuex

模塊A:

import api from '~api'

const state = {
    vip: {},
}

const actions = {
    async ['get']({commit, state, dispatch}, config = {}) {
        try {
            const { data: { code, data } } = await api.post('vip/getVipBaseInfo', config)
            if (code === 1001) commit('receive', data)
        } catch(error) { console.log(error) }
    }
}

const mutations = {
    ['receive'](state, data) {
        state.vip = data
    }
}

const getters = {
    ['get'](state) {
        return state.vip
    },
}

export default {
    namespaced: true,
    state,
    actions,
    mutations,
    getters
}

模塊B:

import api from '~api'

const state = {
    shop: {},
}

const actions = {
    async ['get']({commit, state, dispatch}, config = {}) {
        try {
            const { data: { code, data } } = await api.post('shop/getShopBaseInfo', config)
            if (code === 1001) commit('receive', data)
        } catch(error) { console.log(error) }
    }
}

const mutations = {
    ['receive'](state, data) {
        state.shop = data
    }
}

const getters = {
    ['get'](state) {
        return state.shop
    },
}

export default {
    namespaced: true,
    state,
    actions,
    mutations,
    getters
}

假設模塊 B 的 actions 裏, 須要用模塊 A 的 state 該怎麼辦?

const actions = {
    async ['shop'](store, config = {}) {
        const { commit, dispatch, state, rootState } = store
        console.log(rootState) // 打印根 state
        console.log(rootState.vip) // 打印其餘模塊的 state
        try {
            const { data: { code, data } } = await api.post('shop/getShopBaseInfo', config)
            if (code === 1001) commit('receive', data)
        } catch(error) { console.log(error) }
    }
}

咱們來看下上面的代碼, actions 中的 shop 方法, 有 2 個參數, 第一個是 store, 第二個是 dispatch 調用時傳過來的參數
store 這個對象又包含了 4 個鍵, 其中 commit 是調用 mutations 用的, dispatch 是調用 actions 用的, state 是當前模塊的 state, 而 rootState 是根 state,
既然能拿到根 state, 想取其餘模塊的 state 是否是就很簡單了...?api

假設模塊 B 的 actions 裏, 須要調用模塊 A 的 actions 該怎麼辦?

const actions = {
    async ['shop'](store, config = {}) {
        const { commit, dispatch, state, rootState } = store
        try {
            const { data: { code, data } } = await api.post('shop/getShopBaseInfo', config, 'get')
            if (code === 1001) commit('receive', data) // 調用當前模塊的 mutations
            dispatch('vip/get', {}, {root: true}) // 調用其餘模塊的 actions
        } catch(error) { console.log(error) }
    }
}

上面的代碼中dispatch('vip/vip', {}, {root: true})就是在模塊 B 調用 模塊 A 的 actions,
有 3 個參數, 第一個參數是其餘模塊的 actions 路徑, 第二個是傳給 actions 的數據, 若是不須要傳數據, 也必須預留, 第三個參數是配置選項, 申明這個 acitons 不是當前模塊的async

假設模塊 B 的 actions 裏, 須要調用模塊 A 的 mutations 該怎麼辦?

const actions = {
    async ['shop'](store, config = {}) {
        const { commit, dispatch, state, rootState } = store
        try {
            const { data: { code, data } } = await api.post('shop/getShopBaseInfo', config)
            if (code === 1001) commit('receive', data) // 調用當前模塊的 mutations
            commit('vip/receive', data, {root: true}) // 調用其餘模塊的 mutations
        } catch(error) { console.log(error) }
    }
}

上面的代碼中commit('vip/receive', {}, {root: true})就是在模塊 B 調用 模塊 A 的 mutations,
有 3 個參數, 第一個參數是其餘模塊的 mutations 路徑, 第二個是傳給 mutations 的數據, 若是不須要傳數據, 也必須預留, 第三個參數是配置選項, 申明這個 mutations 不是當前模塊的模塊化

假設模塊 B 的 actions 裏, 須要用模塊 A 的 getters 該怎麼辦?

const actions = {
    async ['shop'](store, config = {}) {
        const { commit, dispatch, state, rootState, rootGetters } = store
        console.log(rootGetters['vip/get']) // 打印其餘模塊的 getters
        try {
            const { data: { code, data } } = await api.post('shop/getShopBaseInfo', config)
            if (code === 1001) commit('receive', data)
        } catch(error) { console.log(error) }
    }
}

咱們來看下上面的代碼, 相比以前的代碼, store 又多了一個鍵: rootGetters
rootGetters 就是 vuex 中全部的 getters, 你能夠用 rootGetters['xxxxx'] 來取其餘模塊的getterspost

相關文章
相關標籤/搜索