Vue.js专区Full-Stack Web Development_博客已迁移

Vuex详解

2018-07-19  本文已影响41人  前端小兵

Vuex是什么

Vuex内容

Vuex使用

├── 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示例

/*
 * 全局存储状态
 */
const state = {
    token: '',
    expTime: '',
    availableQutoa: 0,
    creditQutoa: 0, 
}

export default state;

getters.js示例(我们一般使用getters来获取state的状态,而不是直接使用state):

/*
 * 派生状态,即set、get中的get; 使用getters来获取state的状态
 */

export const token = (state) => {
    return state.token;
}

export const expTime = (state) => {
    return state.expTime;
}

export const availableQutoa = (state) => {
    return state.availableQutoa;
}

export const creditQutoa = (state) => {
    return state.creditQutoa;
}

mutation-type.js示例(我们会将所有mutations的函数名放在这个文件里)

/*
 * 将所有mutations的函数名放在这个文件里(官方推荐mutions方法名使用大写)
 */

export const SET_TOKEN = 'SET_TOKEN';

export const SET_EXPTIME = 'SET_EXPTIME';

export const SET_AVAILABLEQUTOA = 'SET_AVAILABLEQUTOA';

export const SET_CREDITQUTOA = 'SET_CREDITQUTOA'

mutations.js示例:

/*
 * 提交状态修改,即set、get中的set; 是Vuex中唯一修改state的方式 不支持异步操作
 */

import * as types from './mutation-types';

export default {

    [types.SET_TOKEN](state,token) {
        state.token = token;
    },

    [types.SET_EXPTIME](state,expTime) {
        state.expTime = expTime;
    },

    [types.SET_AVAILABLEQUTOA](state,availableQutoa) {
        state.availableQutoa = availableQutoa;
    },

    [types.SET_CREDITQUTOA](state,creditQutoa) {
        state.creditQutoa = creditQutoa;
    }
}

actions.js示例(异步操作)

import * as types from './mutation-types.js'

export default {
    tokenAsyn({commit}, {token}) {
        commit(types.SET_TOKEN, token); //修改token
    },
    expTimeAsyn({commit}, {expTime}) {
        commit(types.SET_EXPTIME, expTime); //修改token过期时间
    },
    availableQutoaAsyn({commit},{availableQutoa}) {
        commit(types.SET_AVAILABLEQUTOA,availableQutoa) //修改可借额度
    },
    creditQutoaAsyn({commit},{creditQutoa}) {
        commit(types.SET_CREDITQUTOA,creditQutoa) //修改授信额度
    },
};

模块的使用modules--m1.js示例

 const m1 = {
                state: {},
                getters: {},
                mutations: {},
                actions: {}
            };
export default m1;

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 === 'development'  // 开发环境中为true,否则为false

export default new Vuex.Store({
    state,
    getters,
    mutations,
    actions,
    module: {
        m1: m1,
        m2: m2,
    }
    plugins: debug ? [createLogger()] : [] //开发环境下显示vuex的状态修改
})

store实例挂载到main.js里面的vue上

import store from './store/index.js'
new Vue({
    el: '#app',
    router,
    store,
    render: h => h(App)
})

在vue组件中使用时,我们通常会使用mapGettersmapActionsmapMutations,然后就可以按照vue调用methods和computed的方式去调用这些变量或函数,示例如下:

import { mapGetters, mapActions } from 'vuex'

export default {
    computed: {
            ...mapGetters([
                'token', //包银项目token
                'expTime', //token过期时间
            ])
    },
    methods: {
        ...mapActions([
                'tokenAsyn',
                'expTimeAsyn',
        ]),
        //获取包银项目token
        _requestBsbToken() {
            let config = {
                contentType : 'application/x-www-form-urlencoded',
                showWait: false,
            }
            requestBsbToken({},config).then(res => {
                let {code,msg,result} = res;
                if(200 !== code) {
                    Toast(msg);
                    return;
                }
                let token = result['access_token'],
                    saveToen = token.split('.').slice(1,2).join(''),
                    userInfo = JSON.parse(Base64.decode(saveToen)),
                    expTime = userInfo['exp'];
                this.tokenAsyn({token}); //修改token
                this.expTimeAsyn({expTime})  //修改token过期时间
                this._queryCredit();
            }).catch(error => {
                console.log(error)
            })
        },
    }
}

在外部JS文件中使用

import store from '../store/index.js'

let token = store.state.token || ''; //获取
store.dispatch('expTimeAsyn',{expTime}) //改变
上一篇下一篇

猜你喜欢

热点阅读