您好,登錄后才能下訂單哦!
這篇文章主要介紹Vue路由對象屬性.meta $route.matched的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
$route.fullPath
1 路由是:/path/:type真正路徑是:/path/list
2 path匹配路徑: /path/list
3 fullPath匹配路由: /path/:type
路由元信息 .meta
const router = new VueRouter({ routes: [ { path: '/foo', component: Foo, children: [ { path: 'bar', component: Bar, // a meta field meta: { requiresAuth: true ,keepAlive:true}//1.權限 2.內存緩存,單頁面切換 } ] } ] })
先理解什么是路由記錄 : 路由記錄就是 routes 配置數組中的對象副本 (還有在 children 數組)。
上方代碼中的路由記錄見下方:
//一級路由 { path: '/foo', component: Foo, children: [ { path: 'bar', component: Bar, // a meta field meta: { requiresAuth: true ,keepAlive:true}//1.權限 2.內存緩存,單頁面切換 } ] } //一級路由的子路由 { path: 'bar',component: Bar,meta: { requiresAuth: true ,keepAlive:true } } //兩者都是 路由記錄
1 定義路由的時候可以配置 meta 字段
2 根據上面的路由配置,/foo/bar 這個 URL 將會匹配父路由記錄以及子路由記錄
3 一個路由匹配到的所有路由記錄會暴露為 $route 對象 (還有在導航守衛中的路由對象) 的 $route.matched 數組。
4 檢查路由記錄中的 meta 字段 ,我們需要遍歷 $route.matched
$route.matched
1 一個數組,包含當前路由的所有嵌套路徑片段的路由記錄
2 一個路由匹配到的所有路由記錄會暴露為 $route 對象 (還有在導航守衛中的路由對象) 的 $route.matched 數組
路由元信息 .meta $route.matched 搭配路由守衛 進行驗證
router.beforeEach((to, from, next) => { if (to.matched.some(record => record.meta.requiresAuth)) { // this route requires auth, check if logged in // if not, redirect to login page. if (!auth.loggedIn()) { next({ path: '/login', query: { redirect: to.fullPath } }) } else { next() } } else { next() // 確保一定要調用 next() } })
以上是“Vue路由對象屬性.meta $route.matched的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。