Vue的Flux框架之Vuex状态管理器
学习vue之前,最重要是弄懂两个概念,一是“what”,要理解vuex是什么;二是“why”,要清楚为什么要用vuex。
vuex是什么?
vuex 类似 react 里面的 redux 的状态管理器,用来管理vue的所有组件状态。
为什么使用vuex?
当你打算开发大型单页应用(spa),会出现多个视图组件依赖同一个状态,来自不同视图的行为需要变更同一个状态。
遇到以上情况时候,你就应该考虑使用vuex了,它能把组件的共享状态抽取出来,当做一个全局单例模式进行管理。这样不管你在何处改变状态,都会通知使用该状态的组件做出相应修改。
下面讲解如何使用vuex
一个简单的vuex示例
本文就讲解安装vuex,直接通过代码讲解vuex使用。
import vue from 'vue'; import vuex from 'vuex'; vue.use(vuex); const store = new vuex.store({ state: { count: 0 }, mutations: { increment (state) { state.count++ } } })
上面就是一个简单的vuex示例,每一个vuex应用就是一个store,在store中包含组件中的共享状态state和改变状态的方法(暂且称作方法)mutations。
需要注意的是只能通过mutations改变store的state的状态,不能通过store.state.count = 5;直接更改(其实可以更改,不建议这么做,不通过mutations改变state,状态不会被同步)。
使用store.commit方法触发mutations改变state:
store.commit('increment'); console.log(store.state.count) // 1
一个简简单单的vuex应用就实现了。
在vue组件使用vuex
如果希望vuex状态更新的时候,组件数据得到相应的更新,那么可以用计算属性computed获取state的更新状态。
const counter = { template: `<div>{{ count }}</div>`, computed: { count () { return store.state.count; } } }
每一个store.state都是全局状态,在使用vuex时候需要在根组件或(入口文件)注入。
// 根组件 import vue from 'vue'; import vuex from 'vuex'; vue.use(vuex); const app = new vue({ el: '#app', store, components: { counter }, template: ` <div class="app"> <counter></counter> </div> ` })
通过这种注入机制,就能在子组件counter通过this.$store访问:
// counter 组件 const counter = { template: `<div>{{ count }}</div>`, computed: { count () { return this.$store.state.count } } }
mapstate函数
computed: { count () { return this.$store.state.count } }
上面通过count计算属性获取同名state.count属性,如何每一次获取都要写一个这样的方法,是不显得重复又麻烦?可以使用mapstate函数简化这个过程。
import { mapstate } from 'vuex'; export default { computed: mapstate ({ count: state => state.count, countalias: 'count', // 别名 `count` 等价于 state => state.count }) }
还有更简单的使用方法:
computed: mapstate([ 'count' // 映射 this.count 为 store.state.count ])
getters对象
如果我们需要对state对象进行做处理计算,如下:
computed: { donetodoscount () { return this.$store.state.todos.filter(todo => todo.done).length } }
如果多个组件都要进行这样的处理,那么就要在多个组件中复制该函数。这样是很没有效率的事情,当这个处理过程更改了,还有在多个组件中进行同样的更改,这就更加不易于维护。
vuex中getters对象,可以方便我们在store中做集中的处理。getters接受state作为第一个参数:
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) } } })
在vue中通过store.getters对象调用:
computed: { donetodos () { return this.$store.getters.donetodos } }
getter也可以接受其他getters作为第二个参数:
getters: { donetodos: state => { return state.todos.filter(todo => todo.done) }, donetodoscount: (state, getters) => { return getters.donetodos.length } }
mapgetters辅助函数
与mapstate类似,都能达到简化代码的效果。mapgetters辅助函数仅仅是将store中的getters映射到局部计算属性:
import { mapgetters } from 'vuex' export default { // ... computed: { // 使用对象展开运算符将 getters 混入 computed 对象中 ...mapgetters([ 'donetodoscount', 'anothergetter', // ... ]) } }
上面也可以写作:
computed: mapgetters([ 'donetodoscount', 'anothergetter', // ... ])
所以在vue的computed计算属性中会存在两种辅助函数:
import { mapstate, mapgetters } from 'vuex'; export default { // ... computed: { ...mapgetters([ ... ]), ...mapstate([ ... ]) } }
mutations
之前也说过了,更改vuex的store中的状态的唯一方法就是mutations。
每一个mutation都有一个事件类型type和一个回调函数handler。
调用mutation,需要通过store.commit方法调用mutation type:
store.commit('increment')
payload 提交载荷
也可以向store.commit传入第二参数,也就是mutation的payload:
mutaion: { increment (state, n) { state.count += n; } } store.commit('increment', 10);
单单传入一个n,可能并不能满足我们的业务需要,这时候我们可以选择传入一个payload对象:
mutation: { increment (state, payload) { state.totalprice += payload.price + payload.count; } } store.commit({ type: 'increment', price: 10, count: 8 })
mapmutations函数
不例外,mutations也有映射函数mapmutations,帮助我们简化代码,使用mapmutations辅助函数将组件中的methods映射为store.commit调用。
import { mapmutations } from 'vuex' export default { // ... methods: { ...mapmutations([ 'increment' // 映射 this.increment() 为 this.$store.commit('increment') ]), ...mapmutations({ add: 'increment' // 映射 this.add() 为 this.$store.commit('increment') }) } }
actions
注 mutations必须是同步函数。
如果我们需要异步操作和提交多个mutations,mutations就不能满足我们需求了,这时候我们就需要actions了。
actions
action 类似于 mutation,不同在于:
- action 提交的是 mutation,而不是直接变更状态。
- action 可以包含任意异步操作。
让我们来注册一个简单的 action:
var store = new vuex.store({ state: { count: 0 }, mutations: { increment: function(state) { state.count++; } }, actions: { increment: function(store) { store.commit('increment'); } } });
分发 action
action 函数接受一个与 store 实例具有相同方法和属性的 context 对象,因此你可以调用 context.commit 提交一个 mutation,或者通过 context.state 和 context.getters 来获取 state 和 getters。
分发 action
action 通过 store.dispatch 方法触发:
乍一眼看上去感觉多此一举,我们直接分发 mutation 岂不更方便?实际上并非如此,还记得 mutation必须同步执行这个限制么?action就不受约束! 我们可以在 action 内部执行异步操作:
actions: { incrementasync ({ commit }) { settimeout(() => { commit('increment') }, 1000) } }
actions 支持同样的载荷方式和对象方式进行分发:
// 以载荷形式分发 store.dispatch('incrementasync', { amount: 10 }) // 以对象形式分发 store.dispatch({ type: 'incrementasync', amount: 10 })
mapactions
同样地,action也有相对应的mapactions 辅助函数
mapactions
mapactions 辅助函数跟mapmutations一样都是组件的 methods 调用:
import { mapactions } from 'vuex' export default { // ... methods: { ...mapactions([ 'increment' // 映射 this.increment() 为 this.$store.dispatch('increment') ]), ...mapactions({ add: 'increment' // 映射 this.add() 为 this.$store.dispatch('increment') }) } }
mutation-types
关于mutation-types方面的讲解官方文档很少说明,但在实际的中大项目中,对==mutation-types==的配置是必不可少的,vuex的文档只讲解了state,getters,mutation,actions四个核心概念,下面我简单补充下mutation-types的使用。
顾名思义,==mutation-types==其实就是mutation实例中各个方法的设定,一般要mutation方法前先在mutation-types用大写写法设定,再在mutation里引入使用,下面看看项目实际使用:
项目组织结构
在mutation-types定义好mutation的方法结构:
//set_singer,set_song 为mutation中要使用的方法名 export const set_singer = 'set_singer' export const set_song = 'set_song'
在mutation中导入使用:
import * as types from ',/mutation-types.js' const mutations = { [types.set_singer](state, singer) { .... }, [types.set_song](state, song) { .... } }
结语
看完上面对vuex的讲解相信你已经入门了,现在可以看看具体的项目加深理解,可以参考我的github一个购物车例子: https://github.com/osjj/vue-shopcart
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。