您好我一直在尝试学习vuejs和vuex,同时尝试通过vix概念获取api调用的响应我收到了以下错误。请帮助。 发生此错误 错误类型错误:无法读取属性' dispatch'未定义的 在app.js:12012
loginAction.js
export const getUsersList = function (store) {
let url = '/Apis/allUsers';
Vue.http.get(url).then((response) => {
store.dispatch('GET_USER_RES', response.data);
if (response.status == 200) {
}
}).catch((response) => {
console.log('Error', response)
})
}
loginStore.js
const state = {
userResponse: []
}
const mutations = {
GET_USER_RES (state, userResponse) {
state.userResponse = userResponse;
}
}
export default {
state, mutations
}
login.vue
import {getUsersList} from './loginAction';
export default {
created () {
try{
getUsersList();
}catch(e){
console.log(e);
}
},
vuex: {
getters: {
getUsersList: state => state.userResponse
},
actions: {
getUsersList
}
}
}
</ script>
答案 0 :(得分:0)
如果您手动调用操作(例如在try / catch中),则不会将商店上下文作为第一个参数。您可以使用getUsersList(this.store)
我认为,但我会使用调度来达到您的所有操作。 (我编辑了一下以获得一个最小的运行示例,但我认为你明白了!)
new Vue({
render: h => h(App),
created() {
this.$store.dispatch('getUsersList');
},
store: new Vuex.Store({
getters: {
getUsersList: state => state.userResponse
},
actions: {
getUsersList
}
})
}).$mount("#app");
另外,使用commit
来突变而不是dispatch
。即:
export const getUsersList = function ({commit}) {
let url = '/Apis/allUsers';
Vue.http.get(url).then((response) => {
commit('GET_USER_RES', response.data); // because GET_USER_RES is a mutation
...