Bootstrap

uniapp在App.vue中异步获取的数据并存储到vuex中其他页面获取不到

我们在使用uniapp的时候可能会遇到在页面挂载完成后需要使用用户信息,但是在刷新后,却无法获取到信息。

由于用户信息是在app.vue中异步获取的,我们在页面挂载完成后无法获取到异步获取的信息(具体原因目前还没找到,使用await也不行)。因为在app.vue中已经调用了获取用户信息接口,我们再次调用这个接口就会导致重复调用,造成冗余。

想要解决可以使用下面方法。当然你也可以监听用户信息,在用户信息获取到在重新执行初始化函数。

store中user.js文件

getUserInfo({commit}){
	Vue.prototype.$getuser = new Promise((resolve, reject) => {
	    userApi.getUserInfo().then(res=>{
		    commit('setUserInfo', res.data)//将用户信息存储到vuex中
		    resolve(res.data)
	    })
	})
},

app.vue文件

this.$store.dispatch('user/getUserInfo')
this.$getuser.then(()=>{
    this.init()
})

在app.vue中先执行getUserInfo函数,将获取用户信息的promise异步操作挂载到Vue的原型上,在在this.$getuser.then执行异步获取数据后的操作

其他页面


mounted(){
    this.$getuser.then(()=>{
        this.init()//方法
    })
}

在需要使用用户信息的页面的mounted中执行

;