vue-router 路由钩子函数(导航守卫)
路由钩子函数有三种:
- 全局钩子: beforeEach(全局前置守卫)、 afterEach(全局后置钩子)
- 路由独享的守卫(单个路由里面的钩子): beforeEnter
- 组件路由:beforeRouteEnter、 beforeRouteUpdate、 beforeRouteLeave
1,编程式导航
除了使用<router-link>创建a标签定义导航链接,我们可以借助router的实例方法,通过编写代码来实现。
router.push(location, onComplete?, onAbort?)
注意:在 Vue 实例内部,可以通过 router.push。
想要导航到不同的 URL,则使用 router.push 方法。这个方法会向 history 栈添加一个新的记录,所以,当用户点击浏览器后退按钮时,则回到之前的 URL。
点击 <router-link :to="..."> 等同于调用 router.push(...)。
imagerouter.push()方法的参数可以是一个字符串路径,或者一个描述地址的对象。例如:
router.push('home') // 字符串
router.push({path: 'home'}) // 对象
// 命名的路由
router.push({ name: 'user', params: { userId: '123' }})
// 带查询参数,变成 /register?plan=private
router.push({ path: 'register', query: { plan: 'private' }})
<router-link :to="{ name: 'user', params: { userId: 123 }}">User</router-link>
等同于:
router.push({ name: 'user', params: { userId: 123 } })
router.replace(location, onComplete?, onAbort?)
跟 router.push 很像,唯一的不同就是,它不会向 history 添加新记录,而是跟它的方法名一样 —— 替换掉当前的 history 记录。
imagerouter.go(n) n参数接受的是一个整数,意思是在 history 记录中向前或者后退多少步,类似window.history.go(n)
路由重定向:
redirect
const router = new VueRouter({
routes: [
{ path: '/a', redirect: '/b' }
]
})
2,导航守卫
导航:表示路由正在发生改变
1,全局前置守卫:beforeEach
router.beforeEach((to, from, next) => {
// ...
})
当一个导航触发时,全局前置守卫按照顺序调用。守卫是异步解析执行,此时导航在所有守卫 resolve 完之前一直处于 等待中
每个守卫方法接收三个参数:
-
to: Route 即将要进入的目标路由对象
-
from: Route 当前导航正要离开的路由
-
next: function 一定要调用该方法来 resolve 这个钩子。执行效果依赖 next 方法的调用参数
- next('/') 或者 next({ path: '/' }): 跳转到一个不同的地址。当前的导航被中断,然后进行一个新的导航。你可以向 next 传递任意位置对象,且允许设置诸如 replace: true、name: 'home' 之类的选项以及任何用在 router-link 的 to prop 或 router.push 中的选项。
- next(): 正常跳转,不写的话,不会跳转
- next(false): 取消了导航
...
2, 全局后置钩子
可以注册全局后置钩子,和守卫不同的是,这些钩子不会接受 next 函数也不会改变导航本身:
router.afterEach((to, from) => {
// ...
})
3, 路由独享的守卫:beforeEnter
const router = new VueRouter({
routes: [
{
path: '/foo',
component: Foo,
beforeEnter: (to, from, next) => {
// ...
}
}
]
})
beforeEnter与全局前置守卫的方法参数是一样的.
4, 组件内的守卫
最后,你可以在路由组件内直接定义以下路由导航守卫:
- beforeRouteEnter
- beforeRouteUpdate (2.2 新增)
- beforeRouteLeave
const Foo = {
template: `...`,
beforeRouteEnter(to, from, next) {
// 在渲染该组件的对应路由被 confirm 前调用
// 不!能!获取组件实例 `this`
// 因为当守卫执行前,组件实例还没被创建
},
beforeRouteUpdate(to, from, next) {
// 在当前路由改变,但是该组件被复用时调用
// 举例来说,对于一个带有动态参数的路径 /foo/:id,在 /foo/1 和 /foo/2 之间跳转的时候,
// 由于会渲染同样的 Foo 组件,因此组件实例会被复用。而这个钩子就会在这个情况下被调用。
// 可以访问组件实例 `this`
},
beforeRouteLeave(to, from, next) {
// 导航离开该组件的对应路由时调用
// 可以访问组件实例 `this`
}
}
beforeRouteEnter 守卫 不能 访问 this,因为守卫在导航确认前被调用,因此即将登场的新组件还没被创建。
不过,你可以通过传一个回调给 next来访问组件实例。在导航被确认的时候执行回调,并且把组件实例作为回调方法的参数。
beforeRouteEnter (to, from, next) {
next((vm) => { //vm,可以通过vm这个参数来获取this实例,接着就可以做修改了
vm.text = '改变了'
})
}
注意 beforeRouteEnter 是支持给 next 传递回调的唯一守卫。对于 beforeRouteUpdate 和 beforeRouteLeave 来说,this 已经可用了,所以不支持传递回调,因为没有必要了。
beforeRouteUpdate (to, from, next) { //可以解决二级导航时,页面只渲染一次的问题,也就是导航是否更新了,是否需要更新
// just use `this`
this.name = to.params.name
next()
}
这个离开守卫通常用来禁止用户在还未保存修改前突然离开。该导航可以通过 next(false) 来取消
beforeRouteLeave (to, from, next) { // 当离开组件时,是否允许离开
const answer = window.confirm('Do you really want to leave? you have unsaved changes!')
if (answer) {
next()
} else {
next(false)
}
}
网友评论