等待映射存储 getter 更新 child 属性

Wait for mapped store getter to update child property

我有以下 vuex getters

import { isEmpty } from 'lodash'

// if has token, we assume that user is logged in our system
export const isLogged = ({ token }) => !isEmpty(token)
// get current user data
export const currentUser = ({ user }) => user
export const timeLimit = ({ token_ttl }) => token_ttl
export const getToken = ({ token }) => token

我在 child 组件中有以下计算的 Vuex 属性

 name: "ProfilePic",
  computed: {
    ...mapGetters(['currentUser']),
    url() {
      return new String('').concat(window.location.protocol, '//', window.location.hostname , ':8000', '/games/create/?search=player_id:').valueOf()
    }
  },
  mounted(){
    console.log(this.currentUser)
  },
  watch: {
    currentUser(value, old){
      console.re.log('ok', value, old);
      new QRCode(document.querySelector(".profile-userpic"), {
        text: this.url + value,
        width: 128,
        height: 128,
        colorDark : "#000000",
        colorLight : "#ffffff",
        correctLevel : QRCode.CorrectLevel.H
      })
    }
  }

parent

 import ProfilePic from '../../components/general/qrcode.vue'

 export default {
    name: 'CcDashboard',
    methods : {
      ...mapActions(['checkUserToken', 'setMessage'])
    },
    computed: {
      ...mapGetters(['isLogged'])
    },
    mounted() {
      this.checkUserToken().then(tkn => this.$store.dispatch('setMessage', {type: 'success', message: 'Your Game Starts Now!!!!'})).catch(err =>  this.$store.dispatch('setMessage', {type: 'error', message: ['Your time is up!']}))
    },
    components: {
      'profile-pic': ProfilePic
    }
  }

店铺

Vue.use(Vuex)

export default new Vuex.Store({
  state,
  mutations,
  actions,
  modules,
  plugins,
  getters,
  strict: false, //process.env.NODE_ENV !== 'production',
})

我正在使用 VuexPersist 和 localforage

localforage.config({
  name: 'vuevue'
});

const vuexLocalStorage = new VuexPersist({
  key: 'vuex', // The key to store the state on in the storage provider.
  storage: localforage, // or window.sessionStorage or localForage
  // Function that passes the state and returns the state with only the objects you want to store.
  // reducer: state => ({ Collect: state.Collect, Auth: state.Auth}),
  // Function that passes a mutation and lets you decide if it should update the state in localStorage.
  // filter: mutation => (true)
  modules: ['Auth','Collect'],
  asyncStorage: true
})
export const RESTORE_MUTATION = vuexLocalStorage.RESTORE_MUTATION
// // create a new object and preserv original keys
export default [...app.plugins, vuexLocalStorage.plugin]

mounted() 上执行 console.log 我得到

{__ob__: Observer}current_points: 45email: "qhegmann@jast.com"id: 2name: "Sandrine Cruickshank"total_points: 45__ob__: Observerdep: Dep {id: 20, subs: Array(4)}value: {id: 2, name: "Sandrine Cruickshank", email: "qhegmann@jast.com", current_points: 45, total_points: 45, …}

然而,

当运行逻辑this.currentUser.idreturns未定义而不是一个值(它确实如此)

我是否需要 "wait" 才能从商店中正确填充它?还是我需要从 $store.dispatch() 调用它?

我想你在这里想要的是观察你计算的 属性 itemGetter 的状态,当 itemGetter 不同于 null/undefined 时触发方法 createProductSet ? https://vuejs.org/v2/guide/computed.html

computed : {
    ...mapGetters([
        'itemGetter'
    ])
},

watch : {
    itemGetter(newVal, oldVal) {
        if (typeof newVal == null || typeof newVal == undefined)
            return

        this.createProductSet(newVal)           
    }
},

methods : {
    createProductSet(id){
        // logic
    }
}

弄明白了,并且不得不处理我的一个包的错误enter link description here