亲宝软件园·资讯

展开

在使用vuex的时候出现commit未定义错误的解决

web前端 zxp 人气:0

使用vuex的时候出现commit未定义错误

出现的原因

错误展现过程

首先我们先调用一下

<div><input type="button" @click="$store.dispatch('listMore')" value="加载更多"></div>

为什么是 dispatch ,因为你不是用 commit 了吗?

这个就是在 actions 里面调用 mutations 里面的方法的

然后就是代码:

actions = {
     login(context){
            commit("CHANGE_USERNAME")
        }
    }
};

正确调用的话可以这样来写

actions = {
     login(context){
            context.commit("CHANGE_USERNAME")
        }
    }
};

或者这样:

actions = {
     login({commit}){  //加 { }
            commit("CHANGE_USERNAME")
        }
    }
};

vuex模块化 commit()时报错 unknown mutation type:xxx

废话不多说直接上问题

我写了两个组件,准备练习Vuex的模块化

这是Count模块(计数作用)的js

increment方法触发后,由于逻辑十分简单我就直接给到了mutations

让他加

  methods: {
    increment() {
      this.$store.commit("INCREMENT", this.n);
    },
    decrement() {
      this.$store.commit("DECREMENT", this.n);
    },
    incrementOdd() {
      this.$store.dispatch("incrementOdd", this.n);
    },
    incrementWait() {
      this.$store.dispatch("incrementWait", this.n);
    },
  },
    mutations: {
        // 加
        INCREMENT(state, value) {
            state.sum += value;
        },
        // 减
        DECREMENT(state, value) {
            state.sum -= value;
        }
    },
    state: {
        sum: 0,
        bigSum: 0,
    },

这是Person模块(添加人员作用)的js

add方法触发后将信息封装成对象直接给到mutations,然后一个unshift新增即可 

  methods: {
    add() {
      const personObj = { id: nanoid(), name: this.name };
      console.log(this.$store);

      this.$store.commit("ADD_PERSON", personObj);
      this.name = "";
    },
  },
    mutations: {
        ADD_PERSON(state, personObj) {
            state.personList.unshift(personObj);
        },
    },

然后这是storejs

import Vue from 'vue'
// 引用vuex
import Vuex from 'vuex';

// 使用vuex
Vue.use(Vuex)

import CountOptions from './count';
import PersonOptions from './person';

// 创建并暴露store
export default new Vuex.Store({
    modules:{
        countAbout:CountOptions,
        personAbout:PersonOptions,
    }
})

就这样,run起来后,

于是我把$store捞出来,找到_mutations

发现我的添加人员的add指向的的mutation 外面包了一层,

完事我将这一层加上去,成功实现,

然后我将Count的加上countAbout反而报错

那么问题来了,为啥我两个模块的写法是一样,然后调用的模块的情况也是一样的(count.vue==>count模块,person.vue==>person模块),一个包了一个没包,于是我怀疑是引入顺序的问题,觉得第一个引入的模块不包,于是我将模块的引入,声明甚至组件的顺序都调换了顺序,然而并没有什么软用。。。

于是我写了一个临时的test模块。分别copy Count,Person模块的js,

然后我以为是命名的问题,因为我的两个模块的命名一个有下划线,一个没有下划线,于是:

发现并不是

于是我有写了两个测试模块 test demo

发现除了count,其他都包了

最后发现是我的count的开启命名空间namespaced的d忘了写

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。

加载全部内容

相关教程
猜你喜欢
用户评论