欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 健康 > 养生 > 解决因为数据变化,页面没有变化的情况 , 复习一下使用 vuex 的 modules

解决因为数据变化,页面没有变化的情况 , 复习一下使用 vuex 的 modules

2024/11/30 7:15:40 来源:https://blog.csdn.net/weixin_45379180/article/details/144104470  浏览:    关键词:解决因为数据变化,页面没有变化的情况 , 复习一下使用 vuex 的 modules

文件目录:

user.js

state: {token: '',},
mutations: {SET_LOCALSTORAGE(state, response){state.token = response.tokenlocalStorage.setItem('ACCESS_TOKEN', token)}
},
actions:{Login({ commit, dispatch }, data) {return new Promise((resolve, reject) => {接口 (返回 response)commit('SET_LOCALSTORAGE',response)  // 调用 mutations 里的 SET_LOCALSTORAGE})	})
}

getters.js :文件来自 modules 内文件(名),设置 getters ,方便二次计算,使用

const getters = {userInfo: state => state.user.token,(来自user.js)pageKey: state => state.app.pageKey,(来自app.js)number:state => state.app.number*2, (可重新计算处理)
}
export default getters

index.js: 使用 Vuex ,挂载

import Vue from 'vue'
import Vuex from 'vuex'
import user from './modules/user'
import app from './modules/app'
import getters from './getters'Vue.use(Vuex)
const store = new Vuex.Store({state: {},mutations: {},getters,modules: {user,app},
})
export default store
(引入mian.js 挂载到vue)

使用:
1、使用 getters 内的值

store.getters['pageKey'] 

2、调用 mutations 内的方法,设置 store 的值

store.commit('app/SET_PAGEKEY', new Date().getTime())

3、使用 actions 内 Login 方法

user/Login : 该文件下的, 
store.dispatch('user/Login') // 注意写法,是(文件/方法)
.then((res) => { // 通过返回数据进行其他操作if(res) {console.log(res,'重新获取token')window.location.reload()}
})

解决因为数据变化,页面没有变化的情况

页面:通过设置 key 解决因为数据变化,页面没有变化的情况
<div id="app" :key="pageKey"><transition :name="transitionName"><router-view v-if="isRouterAlive" /></transition></div>js 使用计算属性,在数据变化时候及时更新 key computed: {transitionName() {return this.$store.state.direction || ''},pageKey() {return store.getters['pageKey']  // 因为放到了 getters ,直接使用 ['pageKey'] ,否则  ['app/pageKey']}},

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com