我正试图通过$store.commit('fetchFunction', response.data)
从axios响应中获取对象。我需要在App.vue(根组件)中computed
将数组“全局”存储在SPA(vue-router
)中。
这就是我得到的。
axios.get('/api/to/userController/id')
.then(response => {
//this is a nice json
console.log(response.data.data);
app.$store.commit('userProfile', response.data.data)
})
.catch(error => {
console.log(error);
});
state: {
userProfile: {}
},
mutations: {
userProfile (state, payload) {
state.userProfile = payload;
}
},
getters: {
userProfile: state => {
//this is [__ob__: Observer] lenght: 0
console.log(state.userProfile)}
return state.userProfile;
}
created() {
//this is filled with the observer from store.js - Until reload page!
//after reload page - it is null!
console.log();
},
computed: {
userProfile() {
return this.$store.getters.UserProfile;
}
}
我的实际问题是,如果我更改路由或重新加载页面,该对象将成为观察者并且store
不存储它。
我之前几乎有同样的功能,只需使用true
和false
(我用JWT Token
处理auth的状态)它就像魅力一样。
我的问题是以一种很好的方式传递对象。