关于vue-router的简单小结
1 如果有多个页面使用同一个组件,当你路径跳转后,那些定义在生命周期中的钩子函数就会失去作用,例如
当你想根据不同的路径使同一个组件上显示不同内容时,我们一般会在creat里面判断,但是由于路径是相同的,组件会直接复用,他就不会销毁后在重新创建一个,所以需要在beforeRouteUpdate
里面响应这个变化。或者也可以通过 watch监听$route对象。
2
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()
}
})
meta: { requiresAuth: true }
路由元信息,
配置中的每个路由对象为 路由记录。路由记录可以是嵌套的,因此,当一个路由匹配成功后,他可能匹配多个路由记录,一个路由匹配到的所有路由记录会暴露为route
对象的$route.matched
数组.上面是一个简单的应用。用于拦截登陆。