超详细!Vue-Router手把手教程
最近在重温vue全家桶,再看一遍感觉记忆更深刻,所以专门记录一下(本文vue-router版本为v3.x)。
1,router-view
是一个功能性组件,用于渲染路径匹配到的视图组件。可以配合
和
使用。如果两个一起用,要确保在内层使用
。
如果
设置了名称,则会渲染对应的路由配置中 components
下的相应组件。2,router-link
标签支持用户在具有路由功能的应用中(点击)导航。属性 | 类型 | 说明 | |
---|---|---|---|
to | String/Object | 目标路由/目标位置的对象 | |
replace | Boolean | 不留下导航记录 | |
append | Boolean | 在当前路径后加路径 /a => /a/b | |
tag | String | 指定渲染成何种标签 | |
active-class | String | 激活时使用的Class |
3,重定向redirect 根路由重定向到
login
const router = new VueRouter({
routes: [
{ path: '/', redirect: '/login' }
]
})
动态返回重定向目标
const router = new VueRouter({
routes: [
{ path: '/a', redirect: to => {
// 方法接收 目标路由 作为参数
// return 重定向的 字符串路径/路径对象
}}
]
})
4,路由别名 路由访问
/b
时,URL
会保持为/b
,但是路由匹配则为/a
const router = new VueRouter({
routes: [
{ path: '/a', component: A, alias: '/b' }
]
})
5,路由传参props 使用
props
,避免和$route
过度耦合,这样就可以直接在组件中使用props
接收参数5.1,布尔模式 在路由后面写上参数,并设置
props
为true
{
path: '/vuex/:id',
name: 'Vuex',
component: () => import('@/view/vuex'),
props: true,
mate: {
title: 'vuex'
}
}
设置跳转需要传递的参数
params
跳转 toNext() {
this.$router.push({
name: 'Vuex',
params: {
id: '99999'
}
})
}
在跳转过去的页面,通过
props
或者this.$params
取参props: {
id: {
type: String,
default: ''
}
}this.$params.id
5.2,对象模式 在路由中设置
props
为对象,携带静态数据{
path: '/vuex',
name: 'Vuex',
component: () => import('@/view/vuex'),
props: {
id: '99999'
},
mate: {
title: 'vuex'
}
}
【超详细!Vue-Router手把手教程】跳转
跳转 toNext() {
this.$router.push({
name: 'Vuex'
})
}
在跳转过去的页面,通过
props
或者this.$params
取参props: {
id: {
type: String,
default: ''
}
}this.$params.id
注意:只适用于静态数据
5.3,函数模式 先在路由中设置
props
为Function
,return
一个对象,不管是query
传参还是params
传参,都可以转为props
{
path: '/vuex',
name: 'Vuex',
component: () => import('@/view/vuex'),
props: route => ({id: route.query.id,age: route.params.age
}),
mate: {
title: 'vuex'
}
}
跳转
跳转 toNext() {
this.$router.push({
name: 'Vuex',
query: {
id: '999999'
},
params: {
age: '20'
}
})
}
在跳转过去的页面,通过
props
或者this.$route.params / this.$route.query
取参props: {
id: {
type: String,
default: ''
},
age: {
type: String,
default: ''
}
}this.$route.query
this.$route.params
6,路由守卫 路由守卫主要用来通过跳转或取消的方式守卫导航。
6.1,全局前置守卫beforeEach 当一个导航触发时,全局前置守卫按照创建顺序调用。守卫是异步解析执行,此时导航在所有守卫解析完之前一直处于等待中。
参数 | 说明 |
---|---|
to | 即将要进入的目标路由对象 |
from | 当前导航正要离开的路由 |
next | 回调方法 |
语法 | 说明 |
---|---|
next() | 进行下一个钩子 |
next(false) | 中断导航,URL如已改,则重置到from的地址 |
next('/') | 中断当前跳转并到其他地址,可设置路由对象 |
next(error) | 导航终止并传递错误给onError() |
const router = new VueRouter({ ... })router.beforeEach((to, from, next) => {
// ...
})
6.2,全局解析守卫beforeResolve 2.5.0新增,和
beforeEach
类似,区别是在导航被确认之前,同时在所有组件内守卫和异步路由组件被解析之后,解析守卫就被调用。router.eforeResolve((to, from, next) => {
// ...
})
6.3,全局后置钩子afterEach 后置守卫不会接受
next
函数也不会改变导航本身router.afterEach((to, from) => {
// ...
})
6.4,路由独享守卫beforeEnter 可以在路由配置上直接定义专属的
beforeEnter
守卫,与全局前置守卫的方法参数是一样的。const router = new VueRouter({
routes: [
{
path: '/foo',
component: Foo,
beforeEnter: (to, from, next) => {
// ...
}
}
]
})
6.5,组件内的守卫
- beforeRouteEnter
this
,因为守卫在导航确认前被调用,因此即将登场的新组件还没被创建。可以通过传一个回调给next
来访问组件实例。在导航被确认的时候执行回调,并且把组件实例作为回调方法的参数。const Footer = {
template: `...`,
beforeRouteEnter(to, from, next) {
next(vm => {
// 通过 `vm` 访问组件实例
})
}
}
- beforeRouteUpdate (2.2 新增)
this
。const Foo = {
template: `...`,
beforeRouteUpdate(to, from, next) {
this.name = to.params.name
next()
}
}
- beforeRouteLeave
next(false)
来取消。const Foo = {
template: `...`,
beforeRouteLeave(to, from, next) {
const answer = window.confirm('确认要离开吗')
if (answer) {
next()
} else {
next(false)
}
}
}
6.6,完整的导航解析流程
- 导航被触发。
- 在失活的组件里调用
beforeRouteLeave
守卫。 - 调用全局的
beforeEach
守卫。 - 在重用的组件里调用
beforeRouteUpdate
守卫 (2.2+)。 - 在路由配置里调用
beforeEnter
。 - 解析异步路由组件。
- 在被激活的组件里调用
beforeRouteEnter
。 - 调用全局的
beforeResolve
守卫(2.5+)。 - 导航被确认。
- 调用全局的
afterEach
钩子。 - 触发
DOM
更新。 - 调用
beforeRouteEnter
守卫中传给next
的回调函数,创建好的组件实例会作为回调函数的参数传入。
this.$route.meta
来访问,或者在路由守卫中通过to.meta
和from.meta
访问。const router = new VueRouter({
routes: [
{
path: '/index',
name: 'Index',
component: () => import('@/view/index'),
meta: {
title: '首页',
rolu: ['admin', 'boss']
}
}
]
})
8,过渡动效 只需要使用
transition
标签包裹住router-view
标签即可,动画效果可以自己定义,参考transition
组件的用法。也可以在父组件或者app.js
中使用watch
监听$route
变化,根据不同路由替换transition
组件的name
属性,实现不同的动画效。
监听
watch: {
'$route' (to, from) {
const toD = to.path.split('/').length
const fromD = from.path.split('/').length
this.transitionName = toD < fromD ? 'slide-right' : 'slide-left'
}
}
9,滚动行为 当创建
Router
实例时,可以提供一个scrollBehavior
方法,并接收to
和from
路由对象。第三个参数savedPosition
只有通过浏览器的前进/后退按钮触发时才可用。const router = new VueRouter({
mode: 'hash',
routes,
scrollBehavior(to, from, savedPosition) {
if (savedPosition) {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve(savedPosition)
}, 1000)
})
} else {
return { x: 0, y: 0 }
}
}
})
10,完整路由配置 首先导入
Vue
和vue-router
,然后使用router
,定义路由信息集合,每个路由都是一个对象,对象拥有如下属性属性 | 类型 | 值 |
---|---|---|
path | String | 组件路径信息 |
name | String | 组件命名 |
component | Function | 组件 |
mate | Object | 元信息 |
children | Object | 子路由 |
redirect | String | 重定向 |
props | Boolean/Object/Function | 参数传递 |
import Vue from 'vue'
import VueRouter from 'vue-router'
Vue.use(VueRouter)const routes = [
{
path: '/',
redirect: '/index'
},
{
path: '/index',
name: 'Index',
component: () => import(/* webpackChunkName: "index" */ '@/view/index'),
mate: {
title: '首页',
auth: false
}
},
{
path: '/login',
name: 'Login',
component: () => import(/* webpackChunkName: "login" */ '@/view/login'),
meta: {
title: '登录',
auth: false
},
children: [
{
path: 'children',
name: 'Children',
component: () => import(/* webpackChunkName: "children" */ '@/view/children'),
mate: {
title: '嵌套的子路由',
auth: false
}
}
]
}
]const router = new VueRouter({
mode: 'hash',
routes
})export default router
注意:嵌套子路由必须在被嵌套的页面放置
标签。如果看了觉得有帮助的,我是@鹏多多,欢迎 点赞 关注 评论;END
往期文章
- 使用nvm管理node.js版本以及更换npm淘宝镜像源
- 超详细!Vuex手把手教程
个人主页
- CSDN
- GitHub
- 简书
- 博客园
- 掘金
推荐阅读
- 为什么你的路演总会超时()
- 标签、语法规范、内联框架、超链接、CSS的编写位置、CSS语法、开发工具、块和内联、常用选择器、后代元素选择器、伪类、伪元素。
- 松软可口易消化,无需烤箱超简单,新手麻麻也能轻松成功~
- 原生家庭之痛与超越
- BNC公链|BNC公链 | Eth2.0测试网Topaz已质押超100万枚ETH
- 89㎡挤出小三房,电视墙装的超好看!
- Android超简单实现沉浸式状态栏
- 超级行动力第二次作业-行动大于学习的秘密
- Day10_要想看起来毫不费力,必须付出超乎常人的努力
- 2019/3/29