api
介绍https://vuex.vuejs.org/zh/api/#replacestate
vuex
支持subscribe
方法,只要你的state
是通过mutation
修改的,那么这里可以监听到store
的所有变化。
相比于watch
方法,这个方法可以针对某些特定的修改执行特定的操作。
参考代码
store.subscribe((mutation, state) => {
let oldState = JSON.parse(localStorage.getItem('store'))
let store = oldState && oldState !== '' ? Object.assign(oldState, state) : state
localStorage.setItem('store', JSON.stringify(store))
let reg = generateRegExp(['Cart'])
if (reg.test(mutation.type)) {
if (state.data.shop.id) {
localStorage.setItem(state.data.shop.id, JSON.stringify(state.data.cart))
}
}
})
我们可以在app.vue
中的created生命周期中调用action中的initStore
方法
action.js
initStore ({commit}) {
commit(dataConstant.INIT_STORE)
},
在mutation中
[dataConstant.INIT_STORE] (state) {
if (localStorage.getItem('store')) {
let old = JSON.parse(localStorage.getItem('store'))
if (old.data.version && old.data.version < state.version) {
old.data = Object.assign({}, old.data, state)
} else {
old.data = Object.assign({}, state, old.data)
}
this.replaceState(old) // 替换store的根节点
}
},
PS:上面的replaceState
方法也是vue-dev-tools
中能实现时间旅行的重要方法