route
)就是一组映射关系(key-value
), 多个路由需要路由器(router
)进行管理key
是路径,value
是组件,通俗的将就是通过一个路径key
,可以访问vue
的组件,实现组件的访问与跳转以及传参vue-router
, 命令npm i vue-router
Vue.use(vueRouter)
router
配置项:配置
component
有两种方式
- 第一种:提前加载
import HomeView from '../views/HomeView.vue'
component: HomeView
- 第二种:懒加载,等跳转到该路由的时候再加载
component: () => import('../views/AboutView.vue')
import Vue from 'vue'
// 引入 VueRouter
import VueRouter from 'vue-router'
// 引入 HomeView 组件
import HomeView from '../views/HomeView.vue'
// 应用VueRouter
Vue.use(VueRouter)
// 配置路由规则
const routes = [
{
path: '/',
name: 'home',
component: HomeView
},
{
path: '/about',
name: 'about',
component: () => import('../views/AboutView.vue')
}
]
// 创建router实例对象,去管理一组一组的路由规则
const router = new VueRouter({
mode: 'history',
base: process.env.BASE_URL,
routes
})
// 暴露router
export default router
实现切换(选择路由会有默认class名router-link-exact-active
)可设置高亮样式
指定显示位置
views/pages
文件夹,一般组件通常存放在components
文件夹$route
属性,里面存储这自己的路由信息,当然如果有时候我们需要在组件内监听路由的变化或者拿到路由的参数,在watch
内深度监听$route
试试吧router
,可以通过$router
属性获取到children
配置项:const routes = [
{
path: "/home",
name: "home",
component: HomeView,
},
{
path: "/about",
name: "about",
component: () => import("../views/AboutView.vue"),
children: [
{
path: "news",
name: "news",
component: () => import("../views/NewsView.vue"),
},
{
path: "message",
name: "news",
component: () => import("../views/MessageView.vue"),
},
],
},
];
{
path: "/about",
name: "about", // 给路由起名字
component: () => import("../views/AboutView.vue"),
children: [
{
path: "news",
name: "news",
component: () => import("../views/NewsView.vue"),
},
],
}
// 字符串跳转
News
// 对象跳转
:to="{
name: 'news',
query: {
id: item.id,
name: item.name,
},
}"
query
参数路径呈现就是
http://localhost:8080/news?id=1&name=hello
-
{{ item.name }}
$route.query.id
$route.query.name
params
参数路径呈现就是
http://localhost:8080/news/1/hello
params
参数 {
path: "message",
name: "messages",
component: () => import("../views/MessageView.vue"),
children: [
{
path: "article/:id/:name",
name: "article",
component: () => import("../views/ArticleView.vue"),
},
],
},
{{ item.name }}
特别注意:路由携带params
参数时,若使用to
的对象写法,则不能使用path
配置项,必须使用name
配置!!
$route.params.id
$route.params.name
props
配置{
name: 'about',
path: '/about/:id',
component: About
// 第一种写法:props值为对象,该对象中所有的key-value的组合最终都会通过props传给About组件
// props: {a: 900}
// 第二种写法:props值为布尔值,布尔值为true,则把路由收到的所以params参数通过props传给ABout组件
// props: true
// 第三种写法:props值为函数,该函数返回的对象中每一组key-value都会通过props传给About组件
props(route) {
return {
id: route.query.id
name: route.query.name
}
}
}
的replace
属性push
和replace
,push
是追加历史记录,replace
是替换当前记录,路由跳转时候默认为push
replace
模式:About
实现路由跳转,让路由跳转更加灵活
this.$router.push({
name: "article",
params: {
id: item.id,
name: item.name,
},
})
.catch(() => {
// console.log(res);
});
this.$router.replace({
name: "article",
params: {
id: item.id,
name: item.name,
},
})
.catch(() => {
// console.log(res);
});
this.$router.back() // 后退
this.$router.forward() // 前进
this.$router.go(number)
keep-alive
包裹)路由组件在切换的时候 是会被销毁的。当有时候我们切换的时候想要做一个缓存,把上一个路由组件缓存下来
activated
路由组件被激活时触发deactivated
路由组件失活时触发浏览器运行效果,以及我们切换路由时的控制台输出
分析:我们可以看出,news
路由组件内部的两个声明周期activated
,deactivated
并未进入
mounted
只是在初次加载时进入了一次,后续就没有在进入beforeDestroy
一直未进入,因为缓存起来了,input
内的输入的内容页未重新渲染activated
每次进入news
路由的时候进入此生命周期deactivated
每次离开news
路由的时候进入此生命周期beforeEach
,后置守卫afterEach
)
router.beforeEach/afterEach((to, from, next)
接收三个参数
to:去往哪个路由
from: 来自于哪个路由
next: 放行,往下继续
// 全局前置守卫,初始化时执行,每次路由切换前执行
router.beforeEach((to, from, next) => {
console.log(to, from, next)
if(to.meta.xxx){ // 判断路由跳转前的逻辑
next() // 放行
}
})
// 全局后置守卫,初始化时执行,每次路由切换后执行
router.afterEach((to, from) => {
console.log(to, from)
if(to.meta.title){
document.title = to.meta.title
}
})
path: "/about",
name: "about",
...
beforeEnter(to, from, next){
console.log(to, from, next)
if(to.meta.xxx){ // 判断路由跳转前的逻辑
next() // 放行
}
}
beforeRouteEnter
,离开守卫beforeRouteLeave
)...
mounted(){}
// 进入守卫,通过路由规则,进入该组件时被调用
beforeRouteEnter(to, from, next){}
// 离开守卫,通过路由规则,离开该组件时被调用
beforeRouteLeave(to, from, next){}
url
来说,什么是hash
值? ————#及其后面的内容就是hash
值.hash
值不会包含在HTTP
请求中,即:hash
值不会带给服务器hash
模式:
#
,不美观history
模式:
hash
模式相比略差404
的问题