路由其实是网络工程中的一个术语:
路由的概念在软件工程中出现,最早是在后端路由中实现的,原因是web的发展主要经历了这样一些阶段:
早期的网站开发整个HTML页面是由服务器来渲染的,服务器直接生产渲染好对应的HTML页面, 返回给客户端进行展示.
但是, 一个网站, 这么多页面服务器如何处理呢?
上面的这种操作, 是后端路由:
后端路由的缺点:
前端渲染的理解:
前后端分离阶段:
单页面富应用阶段:
前端路由的核心是改变URL,但是页面不进行整体的刷新
history接口是HTML5新增的, 它有六种模式改变URL而不刷新页面:
前端路由是通过监听URL的改变,来做到URL和内容进行映射的。
URL的hash
#
), 本质上是改变window.location的href属性;hash的优势就是兼容性更好,在老版IE中都可以运行,但是缺陷是有一个#
,显得不像一个真实的路径。
前端流行的三大框架, 都有自己的路由实现:
Vue Router 是 Vue.js 的官方路由:
vue-router是基于路由和组件的
安装Vue Router:
npm install vue-router
第一步:创建路由需要映射的组件(打算显示的页面);
第二步:通过createRouter创建路由对象,并且传入routes和history模式;
第三步:使用app注册路由对象,一般在main.js这样的文件;
第四步:路由使用: 通过
和
;
默认情况下, 进入网站的首页, 希望
渲染首页的内容。 但是的实现中, 默认没有显示首页组件, 必须让用户点击才可以;
如何可以让路径默认跳到到首页, 并且
渲染首页组件呢?
const routes = [
{path:'/',redirect:'/home'},//重定向
{path:'/home',component:Home}
]
在routes中又配置了一个映射:
vue路由的hash模式与history模式的区别
import { createRouter, createWebHashHistory } from 'vue-router'
const router = createRouter({
history: createWebHashHistory(),
routes: [
//...
],
})
https://example.com/user/id
import { createRouter, createWebHistory } from 'vue-router'
const router = createRouter({
history: createWebHistory(),
routes: [
//...
],
})
router-link事实上有很多属性可以配置:
<router-link to="/about" replace active-class="active">关于router-link>
//调用了 to ,使用了repalce属性 ,表明active-class的名称
<style>
.active{
color:yellow;
}
style>
<style>
.router-link-active{
color: red;
}
style>
<style>
.router-link-exact-active;{
color: blue;
}
style>
当打包构建应用时,JavaScript 包会变得非常大,影响页面加载:
这涉及webpack的分包知识,而Vue Router默认就支持动态来导入组件:
import
函数就是返回一个Promise;// 创建一个路由: 映射关系
const router = createRouter({
// 指定采用的模式: hash
history: createWebHashHistory(),
// history: createWebHistory(),
// 映射关系
routes: [
{
path: "/",
redirect: "/home"
},
{
name: "home",
path: "/home",
//懒加载
component: () => import("../Views/Home.vue"),
}
})
路由的其他属性
// 创建一个路由: 映射关系
const router = createRouter({
// 指定采用的模式: hash
history: createWebHashHistory(),
// history: createWebHistory(),
// 映射关系
routes: [
{
name: "about",
path: "/about",
component: () => import("../Views/About.vue"),
meta:{
aaa : 'test',
bbb : 123
}
}
})
很多时候需要将给定匹配模式的路由映射到同一个组件:
例如,可能有一个 User 组件,它应该对所有用户进行渲染,但是用户的ID是不同的;
在Vue Router中,可以在路径中使用一个动态字段来实现,称之为 路径参数;
// 创建一个路由: 映射关系
const router = createRouter({
// 指定采用的模式: hash
history: createWebHashHistory(),
// history: createWebHistory(),
// 映射关系
routes: [
{
path: "/",
redirect: "/about"
},
{
name: "about",
path: "/about",
component: () => import("../Views/About.vue"),
meta:{
aaa : 'test',
bbb : 123
}
}
})
在router-link中进行如下跳转
<router-link to="/user/12345">用户:12345</router-link>
比如,在User中如何获取到对应的值呢?
<template>
<div>
<h2>用户界面:{{ $router.params.id }} </h2>
</div>
</template>
import { useRoute } from 'vue'
export default{
create(){
console.log(this.$router.params.id)
}
setup(){
const route = useRoute()
console.log(route)
console.log(route.params.id)
}
}
对于没有匹配到的路由,通常会匹配到固定的某个页面, 比如NotFound的错误页面中,这时可编写一个动态路由用于匹配所有的页面;
// 创建一个路由: 映射关系
const router = createRouter({
// 指定采用的模式: hash
history: createWebHashHistory(),
// 映射关系
routes: [
{
path: "/",
redirect: "/home"
},
{
name: "about",
path: "/about",
component: () => import("../Views/About.vue"),
},
{//NotFound路由
path:'/:pathMatch(.*)',
component:()=>import('../Views/NotFound.vue')
}
})
注意,可以通过 $route.params.pathMatch
获取到传入的参数
<template>
<div>
<h2>Not Found:{{ $route.params.pathMatch }} h2>
div>
template>
匹配规则加*
有另外一种写法,在/:pathMatch(.*)后面又加了一个 *;
{
path:'/:pathMatch(.*)*',
component:()=>import('../Views/NotFound.vue')
}
它们的区别在于解析的时候,是否解析 /
解析效果 | path语句 |
---|---|
Not Found :[ “user” , “abc” , “12345” ] | path:'/:pathMatch(.*)* |
Not Found :user/abc/12345 | path:'/:pathMatch(.*) |
上面代码匹配的Home、About、User等都属于第一层路由,在它们之间可以来回进行切换;
但是呢,Home页面本身,也可能会在多个组件之间来回切换:
// 创建一个路由: 映射关系
const router = createRouter({
// 指定采用的模式: hash
history: createWebHashHistory(),
// 映射关系
routes: [
{
path: "/",
redirect: "/home"
},
{
path: "/about",
component:() => import("../Views/About.vue")
},
{
path: "/home",
component: () => import("../Views/Home.vue"),
children:[
{
path:'',
redirect:'/home/product'
},
{
path:'product',
redirect:'/home/product'
},
{
path:'message',
component:()=>import('../Views/HomeMessage.vue')
}
]
}
})
有时候希望通过代码来完成页面的跳转,比如点击的是一个按钮:
jumpRouter(){
this.$router.push('/test')
}
当然,也可以传入一个对象
jumpRouter(){
this.$router.push({
path:'/test'
})
}
如果是在setup
中编写的代码,那么可以通过 useRouter
来获取
const router = useRouter()
const jumpRouter = ()=>{
router.push('/test')
}
在js中,路由可以通过query的方式来传递参数
jumpRouter(){
this.$router.push({
path:'/test',
query: { id:'xixi' , gender:'man'}
})
}
在tempalte中通过 $route.query 来获取参数
<tempalte>
<h3>query传递的参数 :{{ $route.query.id }} + {{ $route.query.gender }} </h3>
</tempalte>
push的特点是压入一个新的页面,在用户点击返回时,上一个页面还可以回退,但是使用replace的话,直接替换了当前页面,无法回退到上一个界面。
下面是repalce的两种使用方式
<router-link :to="xxx" repalce>
router.replace(xxx)
router的go
方法,可以通过数字的正负,向前向后移动记录。
router的back
方法, 通过调用 history.back() 回溯历史。相当于 router.go(-1);
router的forward
方法, 通过调用 history.forward() 在历史中前进。相当于 router.go(1)
router.go(1) //向前移动一条记录 等同于router.foeward()
router.go(-1) //向后移动一条记录 等同于router.back()
router.go(3) //向前移动三条记录
router.go(300) //向前移动300条记录 ,若没有这么多记录,则移动失败
router.go(-200) //向后移动200条记录 ,若没有这么多记录,则移动失败
某些情况下需要动态的来添加路由:
addRoute
;如果是为route添加一个children路由,那么可以传入对应的name:
const testRoute = {
path:'/test',
component:()=>import('../Views/test.vue')
}
router.addRoute(,testRoute)
//router.addRoute('test',testRoute) //添加一个children路由
删除路由有以下三种方式:
name
相同的路由;router.addRoute({ path:'/about',name:'about',component:About });//初始路由
router.addRoute({ path:'/other',name:'about',component:other });//nmae相同,覆盖初始路由,也可达到删除目的
removeRoute
方法,传入路由的名称;router.removeRouter('about')
addRoute
方法的返回值回调;const removeRoute = router.addRoute(routRecord)
removeRoute()//删除路由,若存在
路由的其他方法补充:
vue-router 提供的导航守卫主要用来通过跳转或取消的方式守卫导航。
全局的前置守卫beforeEach
是在导航触发时会被回调的:
有两个参数:
有返回值:
可选的第三个参数:next(不推荐使用)
常用功能,只有登录后才能看见某个页面的内容,否则,仍持续在登录界面
// 路由导航守卫
// 进行任何的路由跳转之前, 传入的beforeEach中的函数都会被回调
// 需求: 进入到订单(order)页面时, 判断用户是否登录(isLogin -> localStorage保存token)
// 情况一: 用户没有登录, 那么跳转到登录页面, 进行登录的操作
// 情况二: 用户已经登录, 那么直接进入到订单页面
router.beforeEach((to, from) => {
// 1.进入到任何别的页面时, 都跳转到login页面
// if (to.path !== "/login") {
// return "/login"
// }
// 2.进入到订单页面时, 判断用户是否登录
const token = localStorage.getItem("token")
if (to.path === "/order" && !token) {
return "/login"
}
})
Vue还提供了很多的其他守卫函数,目的都是在某一个时刻给予回调,让可以更好的控制程序的流程或者功能: https://next.router.vuejs.org/zh/guide/advanced/navigation-guards.html
一起来看一下完整的导航解析流程: