vue-router4版本第一次打開界面不匹配路由問題解決
問題:[Vue Router warn]: No match found for location with path “/home”
因為以前是一次性添加路由使用的是addRoutes,現在成瞭addRoute一個一個添加,我登陸後動態添加路由後,明明已經加瞭路由,打開卻警告不匹配而且一片空白,然後查瞭說是需要
next({...to,replace:true})
這個…to,表示會再去一次這個路徑,才能激活那個路徑的匹配
以下是我的登錄和加載菜單的邏輯和寫法
login() { this.$refs.ruleForm.validate(valid => { if (valid) { this.axios.postForm('/login',this.loginForm).then(response => { let data = response.data; this.$store.commit('login', data) let redirect = this.$route.query.redirect this.$router.push({path: (redirect === undefined) ? '/home' : redirect}); }) } else { return false; } }); }
登錄後會跳轉,然後觸發全局守衛
router.beforeEach((to, from, next) => {//配置路由守衛 if(to.path==='/'){ next() }else if(store.state.user.id){ initMenus(router,store,next,to) }else{ next({ path: '/',query: {redirect: to.path}}); } });
然後第一次會進入initMenus函數初始化路由
import axios from "axios"; export const initMenus = (router, store,next,to) => {//按F5刷新的話vuex裡的會被清空,長度變為0 if (store.state.menu !== null) { next() }else { axios.get("/menu").then(response => { if (response) { let responseData = response.data if (responseData.flag) { store.state.menu = responseData.data initRoute(router,store.state) next({...to,replace:true})//解決router4版本的第一次路由不匹配問題 } else { this.$ElMessage.error('請求菜單失敗') } } }) } } const initRoute = (router,state)=> { const loadView = view => {//這種引入方式控制臺不會報警告 // 路由懶加載 return () => import(`@/views/${view}`) }; const menus = state.menu const firstLevelMenu = { children: [], component: loadView('home/HomeView.vue') } menus.forEach(menu=>{ menu.component = loadView(menu.component) if(menu.children === null || menu.children.length === 0){ firstLevelMenu.children.push(menu) }else{ menu.children.forEach(children=>{ children.component = loadView(children.component) }) router.addRoute(menu) } }) router.addRoute(firstLevelMenu) }
一定要在添加完所有路由後寫這個next({…to,replace:true}),而且next不能重復調用
最後可以解決界面空白問題,但是警告不會消失
到此這篇關於vue-router4版本第一次打開界面不匹配路由問題解決的文章就介紹到這瞭,更多相關vue-router4界面不匹配路由內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- el-menu動態加載路由的實現
- 手把手教你vue實現動態路由
- 使用vue-element-admin框架從後端動態獲取菜單功能的實現
- vue3動態添加路由
- Vue項目中token驗證登錄(前端部分)