6

我有带有 vuex 的电子应用程序。商店为带有模块的整个应用程序配置,我的测试模块 Browser.js:

export default {
  namespaced: true,
  state: {
    currentPath: 'notSet'
  },
  mutations: {
    setPath (state) {
      state.currentPath = 'xxxx'
    }
  },
  actions: {
    updateCurrentPath ({ commit }) {
      console.log('COMMIT')
      commit('setPath')
    }
  },
  getters: {
    getCurrentPath (state) {
      return state.currentPath
    }
  }
}

现在在组件内部我试图发送更新操作但没有成功。吸气剂工作正常:

mounted () {
  console.log('mounted')
  console.log('# GET FROM STORE:', this.$store.getters['Browser/getCurrentPath'])
  console.log('# DISPATCH:', this.$store.dispatch('Browser/updateCurrentPath'))
  console.log('# GET FROM STORE 2:', this.$store.getters['Browser/getCurrentPath'])
},

安慰:

mounted
Browser.vue?31a5:62 # GET FROM STORE: notSet
Browser.vue?31a5:63 # DISPATCH: undefined
Browser.vue?31a5:64 # GET FROM STORE 2: notSet

动作存在,当我记录 this.$store 变量时,我可以看到:

Store {_committing: false, _actions: {…}, _actionSubscribers: Array(0), _mutations: {…}, _wrappedGetters: {…}, …}
_actions:
Browser/updateCurrentPath

那么我应该如何调度动作呢?

4

3 回答 3

22

问题出在电子插件上。我使用来自 github 的 electron-vue repo,并且使用了一个插件:

export default new Vuex.Store({
  modules,
  plugins: [
    createPersistedState(),
    createSharedMutations()
  ],
  strict: process.env.NODE_ENV !== 'production'
})

createSharedMutations 插件是问题所在。注释掉后,一切正常:

export default new Vuex.Store({
  modules,
  plugins: [
    createPersistedState()
  ],
  strict: process.env.NODE_ENV !== 'production'
})
于 2018-12-12T21:21:46.520 回答
3

如果您使用带有 vuex-electron 插件的 vue-electron 模板,您需要在 src/main/index.js 文件中添加以下行

import store from '../renderer/store'
于 2019-02-24T09:04:02.583 回答
1

如果你启用了 createSharedMutations() 插件,你需要在主进程中创建一个 store 实例。为此,只需将此行添加到您的主进程中(例如 src/main.js):

import './path/to/your/store'链接到导致此问题的 electron-vue 使用的官方插件

于 2019-01-03T17:26:22.937 回答