在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
最近在重温vue全家桶,再看一遍感觉记忆更深刻,所以专门记录一下(本文vue-router版本为v3.x)。 1,router-view
|
属性 | 类型 | 说明 |
---|---|---|
to | String/Object | 目标路由/目标位置的对象 |
replace | Boolean | 不留下导航记录 |
append | Boolean | 在当前路径后加路径 /a => /a/b |
tag | String | 指定渲染成何种标签 |
active-class | String | 激活时使用的Class |
<router-link :to="{ path: '/login'}" replace tag="span"></router-link>
根路由重定向到login
const router = new VueRouter({ routes: [ { path: '/', redirect: '/login' } ] })
动态返回重定向目标
const router = new VueRouter({ routes: [ { path: '/a', redirect: to => { // 方法接收 目标路由 作为参数 // return 重定向的 字符串路径/路径对象 }} ] })
路由访问/b时,URL会保持为/b,但是路由匹配则为/a
const router = new VueRouter({ routes: [ { path: '/a', component: A, alias: '/b' } ] })
使用props,避免和$route过度耦合,这样就可以直接在组件中使用props接收参数
在路由后面写上参数,并设置props为true
{ path: '/vuex/:id', name: 'Vuex', component: () => import('@/view/vuex'), props: true, mate: { title: 'vuex' } }
设置跳转需要传递的参数params
<router-link :to="{name:'Vuex', params: {id: '99999'}}" tag="h1">跳转</router-link> <!--或者--> toNext() { this.$router.push({ name: 'Vuex', params: { id: '99999' } }) }
在跳转过去的页面,通过props或者this.$params取参
props: { id: { type: String, default: '' } } <!--或者--> this.$params.id
在路由中设置props为对象,携带静态数据
{ path: '/vuex', name: 'Vuex', component: () => import('@/view/vuex'), props: { id: '99999' }, mate: { title: 'vuex' } }
跳转
<router-link :to="{name:'Vuex'}" tag="h1">跳转</router-link> <!--或者--> toNext() { this.$router.push({ name: 'Vuex' }) }
在跳转过去的页面,通过props或者this.$params取参
props: { id: { type: String, default: '' } } <!--或者--> this.$params.id
注意:只适用于静态数据
先在路由中设置props为Function,return一个对象,不管是query传参还是params传参,都可以转为props
{ path: '/vuex', name: 'Vuex', component: () => import('@/view/vuex'), props: route => ({ <!--query--> id: route.query.id, <!--params--> age: route.params.age }), mate: { title: 'vuex' } }
跳转
<router-link :to="{name:'Vuex',query: {id: '99999'}, params:{age:'20'}}" tag="h1">跳转</router-link> <!--或者--> toNext() { this.$router.push({ name: 'Vuex', query: { id: '999999' }, params: { age: '20' } }) }
在跳转过去的页面,通过props或者this.$route.params / this.$route.query取参
props: { id: { type: String, default: '' }, age: { type: String, default: '' } } <!--或者--> this.$route.query this.$route.params
路由守卫主要用来通过跳转或取消的方式守卫导航。
当一个导航触发时,全局前置守卫按照创建顺序调用。守卫是异步解析执行,此时导航在所有守卫解析完之前一直处于等待中。
参数 | 说明 |
---|---|
to | 即将要进入的目标路由对象 |
from | 当前导航正要离开的路由 |
next | 回调方法 |
next用法如下
语法 | 说明 |
---|---|
next() | 进行下一个钩子 |
next(false) | 中断导航,URL如已改,则重置到from的地址 |
next('/') | 中断当前跳转并到其他地址,可设置路由对象 |
next(error) | 导航终止并传递错误给onError() |
const router = new VueRouter({ ... }) router.beforeEach((to, from, next) => { // ... })
2.5.0新增,和beforeEach类似,区别是在导航被确认之前,同时在所有组件内守卫和异步路由组件被解析之后,解析守卫就被调用。
router.eforeResolve((to, from, next) => { // ... })
后置守卫不会接受next函数也不会改变导航本身
router.afterEach((to, from) => { // ... })
可以在路由配置上直接定义专属的beforeEnter守卫,与全局前置守卫的方法参数是一样的。
const router = new VueRouter({ routes: [ { path: '/foo', component: Foo, beforeEnter: (to, from, next) => { // ... } } ] })
该守卫不能访问this,因为守卫在导航确认前被调用,因此即将登场的新组件还没被创建。可以通过传一个回调给next来访问组件实例。在导航被确认的时候执行回调,并且把组件实例作为回调方法的参数。
const Footer = { template: `...`, beforeRouteEnter(to, from, next) { next(vm => { // 通过 `vm` 访问组件实例 }) } }
在当前路由改变,但是该组件被复用时调用,可以访问组件实例this。
const Foo = { template: `...`, beforeRouteUpdate(to, from, next) { this.name = to.params.name next() } }
导航离开该组件的对应路由时调用,通常用来禁止用户在还未保存修改前突然离开。可以通过next(false)来取消。
const Foo = { template: `...`, beforeRouteLeave(to, from, next) { const answer = window.confirm('确认要离开吗') if (answer) { next() } else { next(false) } } }
定义路由的时候可以配置meta对象字段,用来存储每个路由对应的信息。通过this.$route.meta来访问,或者在路由守卫中通过to.meta和from.meta访问。
const router = new VueRouter({ routes: [ { path: '/index', name: 'Index', component: () => import('@/view/index'), meta: { title: '首页', rolu: ['admin', 'boss'] } } ] })
只需要使用transition标签包裹住router-view标签即可,动画效果可以自己定义,参考transition组件的用法。也可以在父组件或者app.js中使用watch监听$route变化,根据不同路由替换transition组件的name属性,实现不同的动画效。
<transition :name="transitionName"> <router-view></router-view> </transition>
监听
watch: { '$route' (to, from) { const toD = to.path.split('/').length const fromD = from.path.split('/').length this.transitionName = toD < fromD ? 'slide-right' : 'slide-left' } }
当创建Router实例时,可以提供一个scrollBehavior方法,并接收to和from路由对象。第三个参数savedPosition只有通过浏览器的前进/后退按钮触发时才可用。
const router = new VueRouter({ mode: 'hash', routes, scrollBehavior(to, from, savedPosition) { if (savedPosition) { return new Promise((resolve, reject) => { setTimeout(() => { resolve(savedPosition) }, 1000) }) } else { return { x: 0, y: 0 } } } })
首先导入Vue和vue-router,然后使用router,定义路由信息集合,每个路由都是一个对象,对象拥有如下属性
属性 | 类型 | 值 |
---|---|---|
path | String | 组件路径信息 |
name | String | 组件命名 |
component | Function | 组件 |
mate | Object | 元信息 |
children | Object | 子路由 |
redirect | String | 重定向 |
props | Boolean/Object/Function | 参数传递 |
具体代码如下:
import Vue from 'vue' import VueRouter from 'vue-router' Vue.use(VueRouter) const routes = [ { path: '/', redirect: '/index' }, { path: '/index', name: 'Index', component: () => import(/* webpackChunkName: "index" */ '@/view/index'), mate: { title: '首页', auth: false } }, { path: '/login', name: 'Login', component: () => import(/* webpackChunkName: "login" */ '@/view/login'), meta: { title: '登录', auth: false }, children: [ { path: 'children', name: 'Children', component: () => import(/* webpackChunkName: "children" */ '@/view/children'), mate: { title: '嵌套的子路由', auth: false } } ] } ] const router = new VueRouter({ mode: 'hash', routes }) export default router
注意:嵌套子路由必须在被嵌套的页面放置<router-view>标签。
到此这篇关于Vue-Router教程的文章就介绍到这了,更多相关Vue-Router手把手教程内容请搜索极客世界以前的文章或继续浏览下面的相关文章希望大家以后多多支持极客世界!
请发表评论