1. 介绍
配合vue
开发单页面应用:
单页面应用好处:
(1)不需要跳转页面,利用路由来加载不同组件
(2)服务器只需要负责返回数据,压力减小
缺点:
(1)网页seo
不好
(2)首屏渲染慢
2. 路由配置
将路由配置挂载到new
出的路由实例中,再将路由实例挂载到vue
实例上。在组件中就可以使用this.$route
和this.$router
来使用路由实例了。
this.$route
可以获取当前路由的信息;
this.$router
可以对路由进行一些操作,如跳转;
const routes = [
// 路由重定向
{
path: '',
redirect: '/myRouter'
},
{
path: '/demo',
name: 'demo'
component: demo
meta: {
}
},
{
// 以 / 开头的嵌套路径会被当作根路径, 所以children path: 'user/:id?',没有以 / 开头
path: '/mapCaseWall',
component: mapCaseWall,
// 嵌套路由
children: [
{
// 动态路由,参数以冒号开头 组件中使用this.$route.params.id可以获得传入的id
path: 'user/:id?',
component: user
}
]
}
];
// 路由实例
export default new Router({
routes,
linkActiveClass: 'current',
});
// Vue实例
new Vue({
el: '#app',
router,
store,
...
});
3. 动态路由
因为两个路由渲染的是同一个组件,复用高效性导致Detail/123
跳转到Detail/456
是不会重新渲染组件的,所有的钩子都不会再走。页面被复用。如果需要让页面重新渲染。有两种方法。
lookDetail(id) {
this.$router.push(`/detail/${id}`);
},
1:watch
路由变化,可以侦测到Detail/123
和Detail/456
的不同,如果变化了再调用一下初始化页面函数。
watch: {
$route(to, from) {
this.initPage();
}
}
2:使用组件中的路由钩子。一定要写next()
,不然页面继续不下去
beforeRouteUpdate(to, from, next) {
const recordIdx = to.params.id;
console.log('update', recordIdx)
next();
}
4. 路由跳转
1:如果需要将路由绑定在标签上点击跳转,则需要使用导航式跳转<router-link>
标签
<router-link v-for="(item, index) in menuSetting" :key="index" tag="li" v-text="item.label" :to="{name : item.path}" replace></router-link>
menuSetting: [{
path: 'myPath',
label: '路由名称'
}]
// 字符串
<router-link to="home">Home</router-link>
// 渲染结果
<a href="home">Home</a>
// 使用v-bind的JS表达式
<router-link v-bind:to="'home'">Home</router-link>
// 不写v-bind也可以,就像绑定别的属性一样
<router-link :to="'home'">Home</router-link>
<router-link :to="{ path: 'home' }">Home</router-link>
// 命名的路由
<router-link :to="{ name: 'user', params: { userId: 123} }">User</router-link>
// 带查询参数,下面的结果为 /register?plan=private
<router-link :to="{ path: 'register', query: { plan: 'private' }}">Register</router-link>
2:如果需要在程序中直接进行路由的跳转,需要使用编程式跳转
// 字符串
router.push('home');
// 对象
router.push({ path: 'home' });
// 命名的路由
router.push({ name: 'user', params: { userId: 123 } });
// 带查询参数,变成/register?plan=private
router.push({ path: 'register', query: { plan: 'private' }});
可以使用如下方式直接跳转动态路由:
this.$router.push(`/detail/${recordIdx}`);
5: 导航守卫(钩子函数)
1:全局钩子
const router = new VueRouter({...})
router.beforeEach((to, from, next)=>{
// ...
})
当一个导航触发时,全局前置守卫按照创建顺序调用。守卫是异步解析执行,此时导航在所有守卫resolve
完之前一直处于等待中。
每个守卫方法接收三个参数:
to
: Route: 即将要进入的目标 路由对象
from
: Route: 当前导航正要离开的路由
next
: Function: 一定要调用该方法来resolve
这个钩子。执行效果依赖next
方法的调用参数。
next()
: 进行管道中的下一个钩子。如果全部钩子执行完了,则导航的状态就是confirmed
(确认的)。
next(false)
: 中断当前的导航。如果浏览器的URL
改变了(可能是用户手动或者浏览器后退按钮),那么URL
地址会重置到from
路由对应的地址。
next('/')
或者next({ path: '/' })
: 跳转到一个不同的地址。当前的导航被中断,然后进行一个新的导航。你可以向next
传递任意位置对象,且允许设置诸如replace: true
、name: 'home'
之类的选项以及任何用在router-link
的to prop
或router.push
中的选项。
next(error)
: (2.4.0+) 如果传入next
的参数是一个Error
实例,则导航会被终止且该错误会被传递给router.onError()
注册过的回调。
确保要调用next
方法,否则钩子就不会被resolved
。
路由切换时,离开会调用:afterEach
router.afterEach((to, from)=>{
// ...
});
一定要写next()
不然页面走不下去
//路由守卫
router.beforeEach(async(to, from, next) => {
let locked = false;
option.forEach(v => {
if (to.name === v.path && v.locked) {
locked = true;
return false;
}
})
if (!locked) {
next();
}
});
2:路由独享的钩子:beforeEnter
这些守卫与全局前置守卫的方法参数是一样的
const router = new VueRouter({
routes: [
{
path: '/foo',
component: Foo,
beforeEnter: (to, from, next) => {
// ...
}
}
]
})
3:组件中的钩子 - 写在组件中的钩子
- 进入路由之前调用:
beforeRouteEnter
beforeRouteEnter
守卫 不能 访问this
,因为守卫在导航确认前被调用,因此即将登场的新组件还没被创建。
不过,你可以通过传一个回调给next
来访问组件实例。在导航被确认的时候执行回调,并且把组件实例作为回调方法的参数。
beforeRouteEnter (to, from, next) {
next(vm => {
// 通过 `vm` 访问组件实例
})
}
注意beforeRouteEnter
是支持给next
传递回调的唯一守卫。对于beforeRouteUpdate
和beforeRouteLeave
来说,this
已经可用了,所以不支持传递回调,因为没有必要了。
beforeRouteUpdate (to, from, next) {
// just use `this`
this.name = to.params.name
next()
}
这个离开守卫通常用来禁止用户在还未保存修改前突然离开。该导航可以通过next(false)
来取消。
beforeRouteLeave (to, from , next) {
const answer = window.confirm('Do you really want to leave? you have unsaved changes!')
if (answer) {
next()
} else {
next(false)
}
}
- 路由更新时调用:beforeRouteUpdate
- 离开路由时调用:beforeRouteLeave
const Foo = {
template: `...`,
beforeRouteEnter (to, from, next) {
// 在渲染该组件的对应路由被 confirm 前调用
// 不!能!获取组件实例 `this`
// 因为当守卫执行前,组件实例还没被创建
},
beforeRouteUpdate (to, from, next) {
// 在当前路由改变,但是该组件被复用时调用
// 举例来说,对于一个带有动态参数的路径 /foo/:id,在 /foo/1 和 /foo/2 之间跳转的时候,
// 由于会渲染同样的 Foo 组件,因此组件实例会被复用。而这个钩子就会在这个情况下被调用。
// 可以访问组件实例 `this`
},
beforeRouteLeave (to, from, next) {
// 导航离开该组件的对应路由时调用
// 可以访问组件实例 `this`
}
}
6: router-view
& keep-alive
嵌套路由:router-view
是渲染匹配到的路由的容器。可以嵌套。路由跳转时会先找最近的router-view
来渲染。
<keep-alive :include="cache_page" :exclude="exclude_page">
<router-view></router-view>
</keep-alive>
router-view
可以配合<keep-alive>
和<transiton>
标签来使用
<transition>
<keep-alive>
<router-view></router-view>
</keep-alive>
</transition>
-
keep-alive
可将组件保存在缓存中,再次切换回来直接从缓存中取,包括用户输入的信息 -
transition
可以实现组件切换时的动画效果。