欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

解决vue2.0路由跳转未匹配相应用路由避免出现空白页面的问题

程序员文章站 2022-03-21 20:48:13
在做项目的时候,遇到需要做路由跳转,但当用户输入错误url地址,或是其它非法url路由地址,我们或许会想到跳转至404页面。不管你有没有写一个404页面,当出现未匹配路由都...

在做项目的时候,遇到需要做路由跳转,但当用户输入错误url地址,或是其它非法url路由地址,我们或许会想到跳转至404页面。不管你有没有写一个404页面,当出现未匹配路由都需重新指定页面跳转。可能大家首先想到会是路由重定向,redirect来解决这个问题。但实际上通过redirect是没办法更好解决这个问题的。

看代码红色部分

import vue from 'vue'

import router from 'vue-router'
import hello from '@/components/hello'
vue.use(router)
let routes = [
 {
 path: '/',
 name: 'login',
 component: login
 },
 {
 path: '/login',
 name: 'login',
 component: login
 },
 {
 path: '/index',
 name: 'index', 
 component: hello,
 }
];
const router = new router({
 history: true,
 routes : routes
});

重点如下:

router.beforeeach((to, from, next) => {
if (to.matched.length ===0) { //如果未匹配到路由
from.name ? next({ name:from.name }) : next('/'); //如果上级也未匹配到路由则跳转登录页面,如果上级能匹配到则转上级路由
} else {
next(); //如果匹配到正确跳转
}
});

以上这篇解决vue2.0路由跳转未匹配相应用路由避免出现空白页面的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。