将对象提交到vuex中的状态

时间:2017-10-16 12:13:36

标签: javascript ecmascript-6 vue.js axios vuex

我正试图通过$store.commit('fetchFunction', response.data)从axios响应中获取对象。我需要在App.vue(根组件)中computed将数组“全局”存储在SPA(vue-router)中。 这就是我得到的。

auth.js

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);
    });

store.js

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;
}

App.vue

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不存储它。 我之前几乎有同样的功能,只需使用truefalse(我用JWT Token处理auth的状态)它就像魅力一样。 我的问题是以一种很好的方式传递对象。

1 个答案:

答案 0 :(得分:0)

使用SessionStorage通过路线更改跟踪更改。