安装
-
yarn add vuex
-
集成
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
简单使用
文件配置
main.js
import Vue from 'vue'
import App from './App.vue'
import Vuex from 'vuex'
import store from './store'
Vue.use(Vuex)
Vue.config.productionTip = false
new Vue({
render: h => h(App),
store: store
}).$mount('#app')
store/index.js
import Vue from "vue";
import Vuex from "vuex";
Vue.use(Vuex);
export default new Vuex.Store({
state: {
count: 100
},
getters: {
tripleCount (state) {
return state.count * 3
}
},
mutations: {},
actions: {},
modules: {}
});
staus
status
用于状态的存储。
直接访问:
在computed中使用:
...
computed: {
doubleCount () {
return this.$store.state.count * 2
}
}
...
vuex提供了mapState
方法,用于简化冗余代码
computed: mapState({
doubleCount: state => state.count * 2,
quadraCount: state => state.count * 4,
})
...
computed: {
...mapState({
doubleCount: state => state.count * 2,
addLocalNum (state) {
return state.count + this.localNum
}
})
getter
Vuex 允许我们在 store 中定义“getter”(可以认为是 store 的计算属性)。就像计算属性一样,getter 的返回值会根据它的依赖被缓存起来,且只有当它的依赖值发生了改变才会被重新计算。
直接访问
tripleCount:{{ $store.getters.tripleCount }} <br>
或者
computed: {
calcCountExt() {
return this.$store.getters.calcCountExt
},
getCountAddValue() {
return this.$store.getters.getCountAddValue(10)
},
...mapGetters({
// calcCountExt 相当于 this.$store.getters.calcCountExt
countAddValue: 'calcCountExt'
}),
...mapGetters([
'doneTodosCount',
'anotherGetter',
// ...
])
},
同样提供了mapGetters
方法用来简化代码。
Mutation
用于修改状态。
Vuex 中的 mutation 非常类似于事件:每个 mutation 都有一个字符串的 事件类型 (type) 和 一个 回调函数 (handler)。这个回调函数就是我们实际进行状态更改的地方,并且它会接受 state 作为第一个参数:
使用举例:
mutations: {
incrementCount (state) {
state.count++
},
countMultiply (state, n) {
state.count = state.count * n
}
},
this.$store.commit('countMultiply',2);
一条重要的原则就是要记住 mutation 必须是同步函数。
提供了函数mapMutations
方便用户操作:
import { mapMutations } from 'vuex'
export default {
methods: {
...mapMutations([
'increment',
'incrementBy'
]),
...mapMutations({
add: 'increment'
})
}
}
action
Action 类似于 mutation,不同在于:
- Action 提交的是 mutation,而不是直接变更状态。
- Action 可以包含任意异步操作。
mutation中定义的方法必须同步执行,action没有这个限制。
actions: {
increment ({ commit }) {
commit('increment')
}
}
Actions 支持同样的载荷方式和对象方式进行分发:
store.dispatch('incrementAsync', {
amount: 10
})
store.dispatch({
type: 'incrementAsync',
amount: 10
})
来看一个更加实际的购物车示例,涉及到调用异步 API 和分发多重 mutation:
actions: {
checkout ({ commit, state }, products) {
const savedCartItems = [...state.cart.added]
commit(types.CHECKOUT_REQUEST)
shop.buyProducts(
products,
() => commit(types.CHECKOUT_SUCCESS),
() => commit(types.CHECKOUT_FAILURE, savedCartItems)
)
}
}
使用mapActions
简化代码
import { mapActions } from 'vuex'
export default {
methods: {
...mapActions([
'increment',
'incrementBy'
]),
...mapActions({
add: 'increment'
})
}
}
store.dispatch
可以处理被触发的 action 的处理函数返回的 Promise
据此,可以方便进行组合:
actions: {
actionB ({ dispatch, commit }) {
return dispatch('actionA').then(() => {
commit('someOtherMutation')
})
}
}
actions: {
async actionA ({ commit }) {
commit('gotData', await getData())
},
async actionB ({ dispatch, commit }) {
await dispatch('actionA')
commit('gotOtherData', await getOtherData())
}
}
Module
module允许将一个vuex对象拆分成n个对象。每个对象有各自的mutation、action、getter、module。
示例代码:
const state = {
userId:'',
userName:''
}
const getters = {
getUserInfo(){
return state;
}
}
const actions = {}
const mutations = {
setUserInfo(state,payload) {
state.userId = payload.userId;
state.userName = payload.userName;
}
}
export default {
namespaced: true,
state,
getters,
actions,
mutations
}
modules: {
user1: user
}
直接访问访问state:
computed: {
userInfo () {
return this.$store.state.user1
}
}
这里的namespaced
的含义是添加一个命名空间。当模块被注册后,它的所有 getter、action 及 mutation 都会自动根据模块注册的路径调整命名。例如:
this.$store.commit('user1/setUserInfo', {
userId:'1'
userName:'2'
})
参考
文档地址 https://vuex.vuejs.org/
vuex-demo 入门解析 https://juejin.cn/post/6844904146038947854