vue之vue-router加深印象
定义
单页面之间的跳转,建立并管理url与组件之间的映射关系
使用
<!--跳转组件 相当于a标签 to相当于href -->
<router-link to="/foo">Go to Foo</router-link>
<!--路由出口 组件渲染在这里-->
<router-view></router-view>
模式
history模式:不在url中显示#,而是和平常的html路径链接一样,底层是利用了HTML5 History新增的pushState()和replaceState()方法。需要后端支持,暂未用到。
History模式就是通过pushState()方法来对浏览器的浏览记录进行修改,来达到不用请求后端来渲染的效果.
hash模式:vue的默认路由模式,#代表url中的锚点,通过改变#后面的参数,不会重新加载界面,二是替换组件
Hash模式就是通过改变#后面的值,实现浏览器渲染指定的组件.
路由懒加载
将组件拆分成代码块,防止打包过大
const Foo = () => import('./Foo.vue')
const router = new VueRouter({
routes: [{ path: '/foo', component: Foo }]
})
路由守卫钩子函数
全局守卫
//前置守卫
const router = new VueRouter({ ... })
//to: Route: 即将要进入的目标 路由对象
//from: Route: 当前导航正要离开的路由
//next: Function: 一定要调用该方法来 resolve 这个钩子。执行效果依赖 next 方法的调用参数
router.beforeEach((to, from, next) => {
// ...
})
//后置守卫
router.afterEach((to, from) => {
// ...
})
路由独享的守卫
const router = new VueRouter({
routes: [
{
path: '/foo',
component: Foo,
beforeEnter: (to, from, next) => {
// ...
}
}
]
})
组件内的守卫
beforeRouteEnter(to, from, next) {
// 在渲染该组件的对应路由被 confirm 前调用
// 不!能!获取组件实例 `this`
// 因为当守卫执行前,组件实例还没被创建
},
beforeRouteUpdate(to, from, next) {
// 在当前路由改变,但是该组件被复用时调用
// 举例来说,对于一个带有动态参数的路径 /foo/:id,在 /foo/1 和 /foo/2 之间跳转的时候,
// 由于会渲染同样的 Foo 组件,因此组件实例会被复用。而这个钩子就会在这个情况下被调用。
// 可以访问组件实例 `this`
},
beforeRouteLeave(to, from, next) {
// 导航离开该组件的对应路由时调用
// 可以访问组件实例 `this`
}
组件传参
//router.js
const router = new VueRouter({
routes: [
{
path: '/user/:id',
component: User,
props: true
},
// 对于包含命名视图的路由,你必须分别为每个命名视图添加 `props` 选项:
{
path: '/user/:id',
components: { default: User, sidebar: Sidebar },
props: { default: true, sidebar: false }
}
]
})
//user.vue
//获取路由参数
this.id =this.$route.params.id
//组件跳转传参
this.$router.push({
path: '/user/10'
});
router,route,routers区别
1、 router:一般指的就是路由实例.如$router。
2、 route:指的就是路由对象.例如;$route指的就是当前路由对象。