Vuex學(xué)習(xí)筆記及Vuex中module的簡(jiǎn)單使用

Image [2].png

vuex其實(shí)就是一個(gè)大的全局管理容器/倉(cāng)庫(kù)主卫,你可以在你項(xiàng)目的任何地方用到它,并且store的狀態(tài)是響應(yīng)式的,也就是說(shuō)在某一個(gè)組件里修改store旨剥,則可以得到全局的響應(yīng)變更。

不能直接更改store中的狀態(tài)浅缸,改變store中的狀態(tài)唯一途徑就是顯示的提交(commit)

例如:

// 如果在模塊化構(gòu)建系統(tǒng)中轨帜,請(qǐng)確保在開(kāi)頭調(diào)用了 Vue.use(Vuex)

const store = new Vuex.Store({
  state: {
    count: 0
  },
  mutations: {
    increment (state) {
      state.count++
    }
  }})
  
  // 不要直接改變store.state.count
store.commit('increment') // 提交
console.log(store.state.count) //  1

由于store中的狀態(tài)是響應(yīng)式的,在組件中調(diào)用store只需在計(jì)算屬性中返回即可衩椒,觸發(fā)變化也僅僅是在組件methods中提交mutation蚌父。

在組件中獲取store中的狀態(tài)

① 通過(guò)組件中計(jì)算屬性返回

Vuex 通過(guò) store 選項(xiàng),提供了一種機(jī)制將狀態(tài)從根組件“注入”到每一個(gè)子組件中(需調(diào)用 Vue.use(Vuex)):

const app = new Vue({
  el: '#app',
  // 把 store 對(duì)象提供給 “store” 選項(xiàng)毛萌,這可以把 store 的實(shí)例注入所有的子組件
  store,
  components: { Counter },
  template: `
    <div class="app">
      <counter></counter>
    </div>
  `})
const Counter = {
  template: `<div>{{ count }}</div>`,
  computed: {
    count () {
      return this.$store.state.count
    }
  }}

② 使用getter

getter其實(shí)就相當(dāng)于是store的計(jì)算屬性苟弛,來(lái)實(shí)時(shí)監(jiān)聽(tīng)state值的變化(最新?tīng)顟B(tài))

import Vue from 'vue';
import Vuex from 'vuex';
Vue.use(Vuex);
 
const store = new Vuex.Store({
  state: {
    todos: [
      { id: 1, text: '...', done: true },
      { id: 2, text: '...', done: false }
    ]
  },
  getters: {
    doneTodos: state => {
      return state.todos.filter(todo => todo.done)
    }
  }})

通過(guò)屬性訪問(wèn)getter

store.getters.doneTodos // -> [{ id: 1, text: '...', done: true }]

getter也可以接受其他getter作為第二個(gè)參數(shù)

getters: {
  // ...
  doneTodosCount: (state, getters) => {
    return getters.doneTodos.length
  }}
  
store.getters.doneTodosCount // -> 1
通過(guò)方法訪問(wèn)

讓getter返回一個(gè)函數(shù),以函數(shù)的參數(shù)給getter傳參

getters: {
  getTodoById: (state) => (id) => {
    return state.todos.find(todo => todo.id === id)
    // 也可以采用下面這種寫(xiě)法
    getTodoById(state) {
        return (id) => {
         return state.todos.find(todo => todo.id === id)
    }
  }}
  
store.getters.getTodoById(2) // -> { id: 2, text: '...', done: false }

mutation

  • mutation 必須是同步操作

更改 Vuex 的 store 中的狀態(tài)的唯一方法是提交 mutation
每個(gè) mutation 都有一個(gè)字符串的 事件類型 (type) 和 一個(gè) 回調(diào)函數(shù) (handler)阁将。

const store = new Vuex.Store({
  state: {
    count: 1
  },
  mutations: {
    increment (state) {
      // 變更狀態(tài)
      state.count++
    }
  }})

上例中的increment是事件類型type膏秫,后面是回調(diào)函數(shù)handler,要調(diào)用一個(gè)mutation的handler做盅,必須以相應(yīng)的type調(diào)用store.commit

store.commit('increment');

當(dāng)然缤削,也可以向store.commit傳入額外的參數(shù)

mutations: {
  increment (state, payload) {
    state.count += payload.count
  }
}

// 可以這樣傳參
store.commit('increment', {
    count: 10
})

// 也可以這樣傳參
store.commit({
    type: 'increment',
    count: 10
})

其實(shí)更建議使用常量命名 Mutation 事件類型

mutations: {
    SOME_MUTATION: (state, payload) =>  {
         state.count += payload.count
  }
}

action

  • action提交的是mutation, 不是直接改變狀態(tài)
  • 異步操作
const store = new Vuex.Store({
  state: {
    count: 0
  },
  mutations: {
    increment (state) {
      state.count++
    }
  },
  actions: {
    increment (context) {
      context.commit('increment')
    }
    // 也可以這樣
    increment ({ commit }) {
      commit('increment')
    }
  }
 })

context是一個(gè)與 store 實(shí)例具有相同方法和屬性的 對(duì)象吹榴, 因此可以context.commit 或者 context.state亭敢、context.getter來(lái)獲取

在action中執(zhí)行異步操作

actions: {
  incrementAsync ({ commit }) {
    setTimeout(() => {
      commit('increment')
    }, 1000)
  }
 }

action是通過(guò)store.dispatch觸發(fā)

store.dispatch('incrementAsync')

// 也可以傳參

// 以載荷形式分發(fā)
store.dispatch('incrementAsync', {
  amount: 10
  })
 
// 以對(duì)象形式分發(fā)
store.dispatch({
  type: 'incrementAsync',
  amount: 10
  )

mapState、mapGetter腊尚、mapMutation吨拗、mapAction輔助函數(shù)

這些輔助函數(shù),其實(shí)都是幫我們?cè)诮M件中映射相應(yīng)的狀態(tài)婿斥,減少不必要的代碼

例如:

//  store文件中
const store = new Vuex.Store({
    state: {
        count: 0
    },
     mutations: {
        increment (state) {
            state.count++
    }
  },
      actions: {
        increment (context) {
            context.commit('increment')
        }
    },
    getters: {
        getCount(state) {
            return state.count
        }
    }
})

//  組件中
import { mapState,mapGetter哨鸭,mapMutation民宿,mapAction} from 'vuex'

export default {

    computed: {
        ...mapState({
            count: state => state.count
        }),
        ...mapState([
            'count', // 將this.count映射為this.$store.state.count
        ]),
        
        ...mapGetters([
             'getCount', // 將this.getCount映射為this.$store.getters.getCount
        ]),
         ...mapGetters({
             getCount: getCount, 
        })
    },
    methods: {
        ...mapAction([
            'increment', // 將 `this.increment()` 映射為`this.$store.dispatch('increment')`
        ]),
        
        ...mapActions({
              add: 'increment' // 將 `this.add()` 映射為 `this.$store.dispatch('increment')`
            }),
            
         
        ...mapMutations({
              add: 'increment' // 將 `this.add()` 映射為 `this.$store.commit('increment')`
            }),
        ...mapMutations([
            'increment', // 將 `this.increment()` 映射為`this.$store.commit('increment')`
        ]),
     }
}

vuex中的module模塊化

當(dāng)一個(gè)項(xiàng)目過(guò)于復(fù)雜需要共享的狀態(tài)過(guò)多時(shí),store對(duì)象就會(huì)變得非常臃腫且不好管理像鸡,這時(shí)我們就可以使用vuex提供的將store分割成一個(gè)個(gè)module

如何使用活鹰?
首先在store文件夾下新建module文件夾,里面就是管理狀態(tài)的js文件只估,既然要把不同狀態(tài)分開(kāi)志群,那就建立不同的文件

Image.png

此時(shí)store文件夾下的index文件就要改成如下所示:


import Vue from 'vue';
import Vuex from 'vuex';
import a1 from './modules/a1';
import a2 from './modules/a2';
Vue.use(Vuex);

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

默認(rèn)情況下,模塊內(nèi)部的action等是注冊(cè)在全局命名空間的蛔钙,如果你希望你的文件具有更高的封裝性和復(fù)用性锌云,可以通過(guò)添加namespaced:true使其成為帶命名空間的模塊。

而我們?nèi)绾卧诮M件中使用帶有命名空間的模塊吁脱?
舉個(gè)栗子:

// a1.module.js
const a1 = {
  namespaced: true,
  state: {
    flag: false
  },
  mutations: {
    CHANGE_FLAG: (state) => {
      state.flag = true;
    }
  },
  actions: {
    changeFlag({commit}) {
      commit('CHANGE_FLAG');
    }
  } 
}
export default a1;
// 組件中
<tempalte>
    <div>
        <div v-if="flag"> 顯示 </div>
        <div v-else> 隱藏 </div>
    </div>
</tempalte>
import {mapState , mapActions} from 'vuex';
export default {
    name: 'A1',
    data() {
        return {}
    },
    computed: {
        // a1 表示指的是modules文件夾下的a1.module.js文件
        ...mapState('a1', { 
            flag: state => state.flag
        }),

        // 也可以這樣寫(xiě)
        ...mapState({
            flag: state => state.a1.flag
        }),

        // 不使用mapState
        flag() {
            return this.$store.state.a1.flag
        }
    },
    methods: {
        ...mapActions('a1', ['changeFlag'])  
        // 此時(shí)將this.changeFlag映射為 this.$store.dispatch('a1/changeFlag')
    }
}

至此桑涎,簡(jiǎn)單的使用vuex你學(xué)會(huì)了嗎彬向?

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市攻冷,隨后出現(xiàn)的幾起案子娃胆,更是在濱河造成了極大的恐慌,老刑警劉巖等曼,帶你破解...
    沈念sama閱讀 216,372評(píng)論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件里烦,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡禁谦,警方通過(guò)查閱死者的電腦和手機(jī)胁黑,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,368評(píng)論 3 392
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)枷畏,“玉大人别厘,你說(shuō)我怎么就攤上這事∮倒睿” “怎么了触趴?”我有些...
    開(kāi)封第一講書(shū)人閱讀 162,415評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)渴肉。 經(jīng)常有香客問(wèn)我冗懦,道長(zhǎng),這世上最難降的妖魔是什么仇祭? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,157評(píng)論 1 292
  • 正文 為了忘掉前任披蕉,我火速辦了婚禮,結(jié)果婚禮上乌奇,老公的妹妹穿的比我還像新娘没讲。我一直安慰自己,他們只是感情好礁苗,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,171評(píng)論 6 388
  • 文/花漫 我一把揭開(kāi)白布爬凑。 她就那樣靜靜地躺著,像睡著了一般试伙。 火紅的嫁衣襯著肌膚如雪嘁信。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 51,125評(píng)論 1 297
  • 那天疏叨,我揣著相機(jī)與錄音潘靖,去河邊找鬼。 笑死蚤蔓,一個(gè)胖子當(dāng)著我的面吹牛卦溢,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 40,028評(píng)論 3 417
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼既绕,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼啄刹!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起凄贩,我...
    開(kāi)封第一講書(shū)人閱讀 38,887評(píng)論 0 274
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤誓军,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后疲扎,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體昵时,經(jīng)...
    沈念sama閱讀 45,310評(píng)論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,533評(píng)論 2 332
  • 正文 我和宋清朗相戀三年椒丧,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了壹甥。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,690評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡壶熏,死狀恐怖句柠,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情棒假,我是刑警寧澤溯职,帶...
    沈念sama閱讀 35,411評(píng)論 5 343
  • 正文 年R本政府宣布,位于F島的核電站帽哑,受9級(jí)特大地震影響谜酒,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜妻枕,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,004評(píng)論 3 325
  • 文/蒙蒙 一僻族、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧屡谐,春花似錦述么、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,659評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至亭珍,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間枝哄,已是汗流浹背肄梨。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,812評(píng)論 1 268
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留挠锥,地道東北人众羡。 一個(gè)月前我還...
    沈念sama閱讀 47,693評(píng)論 2 368
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像蓖租,于是被迫代替她去往敵國(guó)和親粱侣。 傳聞我的和親對(duì)象是個(gè)殘疾皇子羊壹,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,577評(píng)論 2 353