gpt4 book ai didi

laravel-5 - 错误类型错误 : Cannot read property 'dispatch' of undefined at app. js:12012

转载 作者:行者123 更新时间:2023-12-05 07:33:36 25 4
gpt4 key购买 nike

嗨,我一直在尝试学习 vuejs 和 vuex,同时尝试从具有 vuex 概念的 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
}

登录.vue

import {getUsersList} from './loginAction';
export default {

created () {
try{
getUsersList();
}catch(e){
console.log(e);
}
},
vuex: {
getters: {
getUsersList: state => state.userResponse
},
actions: {
getUsersList
}
}
}
</ script>

最佳答案

如果您手动调用这些操作(例如在您的 try/catch 中),它们将不会将商店上下文作为第一个参数。您可以使用 getUsersList(this.store) 我认为,但我会使用 dispatch 来实现您的所有操作。 (我只是做了一点编辑以获得一个最小的运行示例,但我想你明白了!)

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
...

关于laravel-5 - 错误类型错误 : Cannot read property 'dispatch' of undefined at app. js:12012,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50521793/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com