第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Vue:TypeError:提交登錄表單時(shí)無法讀取未定義的屬性'dispatch'

Vue:TypeError:提交登錄表單時(shí)無法讀取未定義的屬性'dispatch'

TypeError: Cannot read property 'dispatch' of undefined嘗試提交 Login.vue 表單時(shí)出現(xiàn)錯誤。我將我的更改function()為只是data()等,就像建議的 SO 答案一樣,但這并沒有幫助......index.js:import Vue from 'vue';import Vuex from 'vuex';import auth from './store/auth.module.js';Vue.use(Vuex);export default new Vuex.Store({    //plugins: [createPersistedState({ storage: sessionStorage })],    state: {  },    mutations: {  },    actions: {  },    modules: { auth }})主.js:import Vue from 'vue'import App from './App.vue'import router from './router';import store from './store/auth.module';import "./assets/css/tailwind.css";import '@/assets/css/tailwind.css';Vue.config.productionTip = false;new Vue({  router,   store,  render: h => h(App),}).$mount('#app');auth-header.js:export default function authHeader() {    let user = JSON.parse(localStorage.getItem('user'));    if (user && user.accessToken) {        return { Authorization: 'Bearer ' + user.accessToken };    } else {        return {};    }}user.service.js:import axios from 'axios';import authHeader from './auth-header';const API_URL = 'localhost:8088/testproject/api/users';class UserService {    getPublicContent() {        return axios.get(API_URL + '/all');    }    getUserBoard() {        return axios.get(API_URL + '?role=user', { headers: authHeader() });    }    getModeratorBoard() {        return axios.get(API_URL + '?role=mod', { headers: authHeader() });    }    getAdminBoard() {        return axios.get(API_URL + '?role=admin', { headers: authHeader() });    }}export default new UserService();
查看完整描述

4 回答

?
元芳怎么了

TA貢獻(xiàn)1798條經(jīng)驗(yàn) 獲得超7個贊

猜測一下,我會說問題出在main.js


// main.js

import store from './store/auth.module';

這似乎是在導(dǎo)入您的一個商店模塊,它不會是一個Vuex.Store實(shí)例。


在main.js,你需要導(dǎo)入商店index.js


// main.js

import store from './index.js'

通過不導(dǎo)入store/index.js,您也錯過了所有重要的


Vue.use(Vuex)


查看完整回答
反對 回復(fù) 2022-11-03
?
繁花如伊

TA貢獻(xiàn)2012條經(jīng)驗(yàn) 獲得超12個贊

你能檢查一下你是否正確地導(dǎo)入了 Vuex 嗎?

我覺得 phil 的回答是正確的,但這里還有一些可能有助于解決問題的額外閱讀:cannot read property 'dispatch' of undefined in Vuex


查看完整回答
反對 回復(fù) 2022-11-03
?
慕容708150

TA貢獻(xiàn)1831條經(jīng)驗(yàn) 獲得超4個贊

請檢查您的文件夾結(jié)構(gòu)是否如下所示。

存儲文件夾->(包含)auth.module,index.js(您提到的第一個代碼片段)。

現(xiàn)在將商店導(dǎo)入到main.js如下所示。

import store from './store'

現(xiàn)在你剩下的代碼應(yīng)該可以工作了。


查看完整回答
反對 回復(fù) 2022-11-03
?
MYYA

TA貢獻(xiàn)1868條經(jīng)驗(yàn) 獲得超4個贊

將此行添加到您的main.js文件中:


import store from '../yourPath';


vue.$store = store

這將全局設(shè)置存儲對象。所以你可以通過使用從任何組件訪問它this


查看完整回答
反對 回復(fù) 2022-11-03
  • 4 回答
  • 0 關(guān)注
  • 188 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號