vue-router之路由钩子(八)
生活随笔
收集整理的這篇文章主要介紹了
vue-router之路由钩子(八)
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
路由鉤子,即導(dǎo)航鉤子,其實就是路由攔截器,vue-router一共有三類:
全局鉤子:最常用
路由單獨鉤子
組件內(nèi)鉤子
1、全局鉤子
在src/router/index.js中使用,代碼如下:
//?定義路由配置const?router?=?new?VueRouter({?...?})//?全局路由攔截-進入頁面前執(zhí)行router.beforeEach((to,?from,?next)?=>?{//?這里可以加入全局登陸判斷//?繼續(xù)執(zhí)行next();});//?全局后置鉤子-常用于結(jié)束動畫等router.afterEach(()?=>?{//不接受next});export?default?router;每個鉤子方法接收三個參數(shù):
to: Route : 即將要進入的目標 [路由對象]
from: Route : 當前導(dǎo)航正要離開的路由
next: Function : 繼續(xù)執(zhí)行函數(shù)
next():繼續(xù)執(zhí)行
next(false):中斷當前的導(dǎo)航。
next(‘/‘) 或 next({ path: ‘/‘ }):跳轉(zhuǎn)新頁面,常用于登陸失效跳轉(zhuǎn)登陸
2、路由單獨鉤子
使用:在路由配置中單獨加入鉤子,在src/router/index.js中使用,代碼如下:
{path:'/home/one',?//?子頁面1component:?One,//?路由內(nèi)鉤子beforeEnter:?(to,?from,?next)?=>?{console.log('進入前執(zhí)行');next();}}3、組件內(nèi)鉤子
使用:在路由組件內(nèi)定義鉤子函數(shù):
beforeRouteEnter:進入頁面前調(diào)用
beforeRouteUpdate (2.2 新增):頁面路由改變時調(diào)用,一般需要帶參數(shù)
beforeRouteLeave:離開頁面調(diào)用
任意找一頁面,編寫如下代碼:
<script>export?default?{name:?'Two',data?()?{return?{msg:?'Hi,?I?am?Two?Page!'}},//?進入頁面前調(diào)用beforeRouteEnter(to,?from,?next)?{console.log('進入enter路由鉤子')next()},//?離開頁面調(diào)用beforeRouteLeave(to,from,?next){console.log('進入leave路由鉤子')next()},//?頁面路由改變時調(diào)用beforeRouteUpdate(to,?from,?next)?{console.log('進入update路由鉤子')console.log(to.params.id)next()}}</script>轉(zhuǎn)載于:https://blog.51cto.com/4547985/2390810
總結(jié)
以上是生活随笔為你收集整理的vue-router之路由钩子(八)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 浅析Nginx 正向代理与反向代理
- 下一篇: MySQL 使用Node.js异步查询结