vuex是什么弥锄?
Vuex 是一個專為 Vue.js 應用程序開發(fā)的狀態(tài)管理模式。它采用集中式存儲管理應用的所有組件的狀態(tài)秀姐,并以相應的規(guī)則保證狀態(tài)以一種可預測的方式發(fā)生變化
狀態(tài)管理模式撼港、集中式存儲管理 一聽就很高大上,蠻嚇人的营曼。在我看來 vuex 就是把需要共享的變量全部存儲在一個對象里面,然后將這個對象放在頂層組件中供其他組件使用愚隧。這么說吧蒂阱,將vue想作是一個js文件、組件是函數(shù)狂塘,那么vuex就是一個全局變量录煤,只是這個“全局變量”包含了一些特定的規(guī)則而已。
在vue的組件化開發(fā)中荞胡,經(jīng)常會遇到需要將當前組件的狀態(tài)傳遞給其他組件妈踊。父子組件通信時,我們通常會采用 props + emit 這種方式泪漂。但當通信雙方不是父子組件甚至壓根不存在相關(guān)聯(lián)系廊营,或者一個狀態(tài)需要共享給多個組件時,就會非常麻煩萝勤,數(shù)據(jù)也會相當難維護露筒,這對我們開發(fā)來講就很不友好。vuex 這個時候就很實用敌卓,不過在使用vuex之后也帶來了更多的概念和框架慎式,需慎重!
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 包含有五個基本的對象:
state:存儲狀態(tài)瘪吏。也就是變量;
getters:派生狀態(tài)蜗巧。也就是set掌眠、get中的get,有兩個可選參數(shù):state幕屹、getters分別可以獲取state中的變量和其他的getters扇救。外部調(diào)用方式:store.getters.personInfo()刑枝。就和vue的computed差不多;
mutations:提交狀態(tài)修改迅腔。也就是set、get中的set靠娱,這是vuex中唯一修改state的方式沧烈,但不支持異步操作。第一個參數(shù)默認是state像云。外部調(diào)用方式:store.commit('SET_AGE', 18)锌雀。和vue中的methods類似。
actions:和mutations類似迅诬。不過actions支持異步操作腋逆。第一個參數(shù)默認是和store具有相同參數(shù)屬性的對象。外部調(diào)用方式:store.dispatch('nameAsyn')侈贷。
modules:store的子模塊惩歉,內(nèi)容就相當于是store的一個實例。調(diào)用方式和前面介紹的相似俏蛮,只是要加上當前子模塊名撑蚌,如:store.a.getters.xxx()。
vue-cli中使用vuex的方式
state.js示例:
const state = {
? ? name: 'weish',
? ? age: 22
};
export default state;
getters.js示例(我們一般使用getters來獲取state的狀態(tài)搏屑,而不是直接使用state):
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的函數(shù)名放在這個文件里):
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'; // 開發(fā)環(huán)境中為true辣恋,否則為false
export default new vuex.Store({
? ? state,
? ? getters,
? ? mutations,
? ? actions,
? ? modules: {
? ? ? ? m1,
? ? ? ? m2
? ? },
? ? plugins: debug ? [createLogger()] : [] // 開發(fā)環(huán)境下顯示vuex的狀態(tài)修改
});
最后將store實例掛載到main.js里面的vue上去就行了
import store from './store/index.js';
new Vue({
? el: '#app',
? store,
? render: h => h(App)
});
在vue組件中使用時亮垫,我們通常會使用mapGetters、mapActions伟骨、mapMutations饮潦,然后就可以按照vue調(diào)用methods和computed的方式去調(diào)用這些變量或函數(shù),示例如下:
import {mapGetters, mapMutations, mapActions} from 'vuex';
/* 只寫組件中的script部分 */
export default {
? ? computed: {
? ? ? ? ...mapGetters([
? ? ? ? ? ? 'name',
? ? ? ? ? ? 'age'
? ? ? ? ])
? ? },
? ? methods: {
? ? ? ? ...mapMutations({
? ? ? ? ? ? setName: 'SET_NAME',
? ? ? ? ? ? setAge: 'SET_AGE'
? ? ? ? }),
? ? ? ? ...mapActions([
? ? ? ? ? ? nameAsyn
? ? ? ? ])
? ? }
};
總結(jié)
以上就是vuex 的相關(guān)知識底靠,其實vuex很簡單.