轉自:http://www.javashuo.com/article/p-xihakfxh-eh.htmljavascript
先引用vuex官網的話:css
Vuex 是一個專爲 Vue.js 應用程序開發的狀態管理模式。它採用集中式存儲管理應用的全部組件的狀態,並以相應的規則保證狀態以一種可預測的方式發生變化。
狀態管理模式、集中式存儲管理 一聽就很高大上,蠻嚇人的。在我看來 vuex 就是把須要共享的變量所有存儲在一個對象裏面,而後將這個對象放在頂層組件中供其餘組件使用。這麼說吧,將vue想做是一個js文件、組件是函數,那麼vuex就是一個全局變量,只是這個「全局變量」包含了一些特定的規則而已。html
在vue的組件化開發中,常常會遇到須要將當前組件的狀態傳遞給其餘組件。父子組件通訊時,咱們一般會採用 props + emit 這種方式。但當通訊雙方不是父子組件甚至壓根不存在相關聯繫,或者一個狀態須要共享給多個組件時,就會很是麻煩,數據也會至關難維護,這對咱們開發來說就很不友好。vuex 這個時候就很實用,不過在使用vuex以後也帶來了更多的概念和框架,需慎重!vue
Talk is cheap,Show me the code. 先來一段代碼間隔下這麼多的文字:java
const store = new Vuex.Store({
state: { name: 'weish', age: 22 }, getters: { personInfo(state) { return `My name is ${state.name}, I am ${state.age}`; } } mutations: { SET_AGE(state, age) { commit(age, age); } }, actions: { nameAsyn({commit}) { setTimeout(() => { commit('SET_AGE', 18); }, 1000); } }, modules: { a: modulesA } }
這個就是最基本也是完整的vuex代碼;vuex 包含有五個基本的對象:vuex
通常來說,咱們都會採用vue-cli來進行實際的開發,在vue-cli中,開發和調用方式稍微不一樣。vue-cli
├── index.html
├── main.js ├── components └── store ├── index.js # 咱們組裝模塊並導出 store 的地方 ├── state.js # 跟級別的 state ├── getters.js # 跟級別的 getter ├── mutation-types.js # 根級別的mutations名稱(官方推薦mutions方法名使用大寫) ├── mutations.js # 根級別的 mutation ├── actions.js # 根級別的 action └── modules ├── m1.js # 模塊1 └── m2.js # 模塊2
state.js示例:segmentfault
const state = { name: 'weish', age: 22 }; export default state;
getters.js示例(咱們通常使用getters來獲取state的狀態,而不是直接使用state):app
export const name = (state) => { return state.name; } export const age = (state) => { return state.age } export const other = (state) => { return `My name is ${state.name}, I am ${state.age}.`; }
mutation-type.js示例(咱們會將全部mutations的函數名放在這個文件裏):框架
export const SET_NAME = 'SET_NAME'; export const SET_AGE = 'SET_AGE';
mutations.js示例:
import * as types from './mutation-type.js'; export default { [types.SET_NAME](state, name) { state.name = name; }, [types.SET_AGE](state, age) { state.age = age; } };
actions.js示例(異步操做、多個commit時):
import * as types from './mutation-type.js'; export default { nameAsyn({commit}, {age, name}) { commit(types.SET_NAME, name); commit(types.SET_AGE, age); } };
modules--m1.js示例(若是不是很複雜的應用,通常來說是不會分模塊的):
export default { state: {}, getters: {}, mutations: {}, actions: {} };
index.js示例(組裝vuex):
import vue from 'vue'; import vuex from 'vuex'; import state from './state.js'; import * as getters from './getters.js'; import mutations from './mutations.js'; import actions from './actions.js'; import m1 from './modules/m1.js'; import m2 from './modules/m2.js'; import createLogger from 'vuex/dist/logger'; // 修改日誌 vue.use(vuex); const debug = process.env.NODE_ENV !== 'production'; // 開發環境中爲true,不然爲false export default new vuex.Store({ state, getters, mutations, actions, modules: { m1, m2 }, plugins: debug ? [createLogger()] : [] // 開發環境下顯示vuex的狀態修改 });
最後將store實例掛載到main.js裏面的vue上去就好了
import store from './store/index.js'; new Vue({ el: '#app', store, render: h => h(App) });
在vue組件中使用時,咱們一般會使用mapGetters、mapActions、mapMutations,而後就能夠按照vue調用methods和computed的方式去調用這些變量或函數,示例以下:
import {mapGetters, mapMutations, mapActions} from 'vuex'; /* 只寫組件中的script部分 */ export default { computed: { ...mapGetters([ name, age ]) }, methods: { ...mapMutations({ setName: 'SET_NAME', setAge: 'SET_AGE' }), ...mapActions([ nameAsyn ]) } };