uniApp 使用Vuex 出现 Cannot read properties of undefined (reading ‘commit‘)情况

最近下手uni app 尝鲜 想到vue全家桶的使用,vuex是必不可少的。使用实例使用完按照文档方法使用,发现了一个问题。

uniApp 使用Vuex 出现 Cannot read properties of undefined (reading ‘commit‘)情况_第1张图片

在调用vue自定义的commit函数是会报错。Cannot read properties of undefined (reading ‘commit’)

说是找不到,就在该函数外部打印输出发现是存在的,函数内的 通过this.$store取值为undefined。问题就找到了。

uniApp 使用Vuex 出现 Cannot read properties of undefined (reading ‘commit‘)情况_第2张图片

其实解决方案就是不使用this实例的属性,上面使用import导入了一个store,这个就是定义的内容且和vue同步的实例,

最终效果图如下:

uniApp 使用Vuex 出现 Cannot read properties of undefined (reading ‘commit‘)情况_第3张图片

你可能感兴趣的:(vue.js,javascript)