2020-08-03 vuex报错:-unknown-action-type-XXX

1,317 阅读1分钟

出现场景:vuex module中

尝试的解决办法:

1.使用mapActions(推荐)

//methods里用键值对方式使用mapActions(数组方式不行)
...mapActions({saveDevice:'overview/saveDevice'}),

//调用
this.saveDevice(deviceArr)

2.注释掉namespaced(可以但不推荐)

3.dispatch时加路径(不行)

this.$store.dispatch('overview/saveDevice',deviceArr)