vuex 简单理解
简单理解
import Vue from 'vue'; import Vuex form 'vuex'; Vue.use(Vuex); const store = new Vuex.Store({ state: { count: 0 }, mutations: { increment (state) { state.count++ } } })
在store中包含组件中的共享状态state
和改变状态的方法(暂且称作方法)mutations
使用store.commit
方法触发mutations
改变state
:
store.commit('increment'); console.log(store.state.count) // 1
mapState函数
import { mapState } from 'vuex'; export default { computed: mapState ({ count: state => state.count, countAlias: 'count', // 别名 `count` 等价于 state => state.count }) }
还有更简单的使用方法:
computed: mapState([ // 映射 this.count 为 store.state.count '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 } form 'vuex'; export default { // ... computed: { mapState({ ... }), mapGetter({ ... }) } }
Mutations
之前也说过了,更改Vuex的store中的状态的唯一方法就是mutations
。
每一个mutation
都有一个事件类型type
和一个回调函数handler
。
const store = new Vuex.Store({ state: { count: 1 }, mutations: { increment (state) { // 变更状态 state.count++ } } })
调用mutation
,需要通过store.commit
方法调用mutation type
:
store.commit('increment')
Payload 提交载荷
也可以向store.commit
传入第二参数,也就是mutation的payload
:
mutaion: { increment (state, n) { state.count += n; } } store.commit('increment', 10); // 或者 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') }) } }
原文:https://juejin.im/post/59c0a7bc6fb9a00a3e30509e