[Vue 牛刀小试]:第十四章 - 编程式导航与实现组件与 Vue Router 之间的解耦
一、前言
在上一章的学习中,通过举例说明,我们了解了 vue router 中命名路由、命名视图的使用方法,以及如何通过 query 查询参数传参,或者是采用 param 传参的方式实现路由间的参数传递。通过学习我们可以发现,在实现路由间的参数传递时,我们将 vue router 与我们的组件强耦合在一起,这无疑是不合适的,那么本章我们就来学习,如何实现组件和 vue router 之间的解耦。
学习系列目录地址:
仓储地址:https://github.com/lanesra712/vuetrial/blob/master/chapter02-bronze/router/decoupling.html
二、干货合集
1、编程式导航
在使用 vue router 的时候,我们通常会通过 router-link 标签去生成跳转到指定路由的链接,但是在实际的前端开发中,我们更多的是通过 js 的方式进行跳转。就像我们很常见的一个交互需求,用户提交表单,提交成功后跳转到上一页面,提交失败则留在当前页。这时候如果我们还是通过 router-link 标签进行跳转就不合适了,我们需要通过 js 根据表单返回的状态进行动态的判断。
在使用 vue router 时,我们已经将 vue router 的实例挂载到了 vue 实例上,因此我们就可以借助 $router 的实例方法,通过编写 js 代码的方式实现路由间的跳转,而这种方式就是一种编程式的路由导航。
在 vue router 中具有三种导航方法,分别为 push、replace 和 go。我们最常见的通过在页面上设置 router-link 标签进行路由地址间的跳转,就等同于执行了一次 push 方法。
在这一小节的示例中,我将使用编程式导航实现通过点击不同的按钮实现路由间的跳转,最终实现的示意图如下所示。
在之前学习 vue router 的基础使用方法时,我们了解到,前端路由的实现方式,实际上就是对于浏览器的 history api 的操作。浏览器的 history 对象提供了对浏览器的会话历史的访问,它暴露了很多有用的方法和属性,允许我们在用户浏览历史中向前和向后跳转,同时从 html5 开始提供了对 history 栈中内容的操作。
而 vue router 所提供的 push、replace 和 go 方法则完全可以对应到浏览器 history api 中所提供的 history.pushstate、history.replacestate 和 history.go 方法。
1.1、push
当我们需要跳转新页面时,我们就可以通过 push 方法将一条新的路由记录添加到浏览器的 history 栈中,通过 history 的自身特性,从而驱使浏览器进行页面的跳转。同时,因为在 history 会话历史中会一直保留着这个路由信息,所以当我们后退时还是可以退回到当前的页面。
在 push 方法中,参数可以是一个字符串路径,或者是一个描述地址的对象,这里其实就等同于我们调用了 history.pushstate 方法。
// 字符串 => /first this.$router.push('first') // 对象 => /first this.$router.push({ path: 'first' }) // 带查询参数 => /first?abc=123 this.$router.push({ path: 'first', query: { abc: '123' }})
这里需要注意,当我们传递的参数为一个对象并且当 path 与 params 共同使用时,对象中的 params 属性不会起任何的作用,我们需要采用命名路由的方式进行跳转,或者是直接使用带有参数的全路径。
const userid = '123' // 使用命名路由 => /user/123 this.$router.push({ name: 'user', params: { userid }}) // 使用带有参数的全路径 => /user/123 this.$router.push({ path: `/user/${userid}` }) // 这里的 params 不生效 => /user this.$router.push({ path: '/user', params: { userid }})
1.2、go
当我们使用 go 方法时,我们就可以在 history 记录中向前或者后退多少步,也就是说通过 go 方法你可以在已经存储的 history 路由历史中来回跳。
// 在浏览器记录中前进一步,等同于 history.forward() this.$router.go(1) // 后退一步记录,等同于 history.back() this.$router.go(-1) // 前进 3 步记录 this.$router.go(3) // 如果 history 记录不够用,那就默默地失败呗 this.$router.go(-100) this.$router.go(100)
1.3、replace
replace 方法同样可以达到实现路由跳转的目的,不过,从名字中你也可以看出,与使用 push 方法跳转不同是,当我们使用 replace 方法时,并不会往 history 栈中新增一条新的记录,而是会替换掉当前的记录,因此,你无法通过后退按钮再回到被替换前的页面。
this.$router.replace({ path: '/special' })
通过编程式路由实现路由间切换的示例代码如下所示,你可以自己尝试一下,去熟悉如何通过 js 来实现路由地址间的切换。
<div id="app"> <div class="main"> <div class="btn-toolbar" role="toolbar" aria-label="toolbar with button groups"> <div class="btn-group mr-2" role="group" aria-label="first group"> <button type="button" class="btn btn-secondary" @click="gofirst">第一页</button> <button type="button" class="btn btn-secondary" @click="gosecond">第二页</button> <button type="button" class="btn btn-secondary" @click="gothird">第三页</button> <button type="button" class="btn btn-secondary" @click="gofourth">第四页</button> </div> <div class="btn-group mr-2" role="group" aria-label="second group"> <button type="button" class="btn btn-secondary" @click="pre">后退</button> <button type="button" class="btn btn-secondary" @click="next">前进</button> </div> <div class="btn-group mr-2" role="group" aria-label="third group"> <button type="button" class="btn btn-secondary" @click="replace">替换当前页为特殊页</button> </div> </div> <router-view></router-view> </div> </div> <script> const first = { template: '<h3>当前是第一页</h3>' } const second = { template: '<h3>当前是第二页</h3>' } const third = { template: '<h3>当前是第三页</h3>' } const fourth = { template: '<h3>当前是第四页</h3>' } const special = { template: '<h3>特殊页面</h3>' } const router = new vuerouter({ routes: [{ path: '/first', component: first }, { path: '/second', component: second }, { path: '/third', component: third }, { path: '/fourth', component: fourth }, { path: '/special', component: special }] }) const vm = new vue({ el: '#app', data: {}, methods: { gofirst() { this.$router.push({ path: '/first' }) }, gosecond() { this.$router.push({ path: '/second' }) }, gothird() { this.$router.push({ path: '/third' }) }, gofourth() { this.$router.push({ path: '/fourth' }) }, next() { this.$router.go(1) }, pre() { this.$router.go(-1) }, replace() { this.$router.replace({ path: '/special' }) } }, router: router }) </script>
2、解耦
在文章开头我们有提到过,在使用路由传参的时候,我们将组件与 vue router 强绑定在了一块,这意味着在任何需要获取路由参数的地方,我们都需要加载 vue router。那么,如何解决这一强绑定呢?
在之前学习组件相关的知识时,我们提到了可以通过组件的 props 选项来实现子组件接收父组件传递的值。而在 vue router 中,同样给我们提供了通过使用组件的 props 选项来进行解耦的功能。
在下面的示例中,在定义路由模板时,我们通过指定需要传递的参数为 props 选项中的一个数据项,之后,我们通过在定义路由规则时,指定 props 属性为 true,即可实现对于组件以及 vue router 之间的解耦。
<script> const second = { props: ['id'], template: '<h3>当前是第二页 --- {{id}} </h3>' } const router = new vuerouter({ routes: [{ path: '/second/:id', component: second, props: true }] }) const vm = new vue({ el: '#app', data: {}, methods: { gosecond() { this.$router.push({ path: '/second' }) } }, router: router }) </script>
可以看到,这里采用 param 传参的方式进行参数传递,而在组件中我们并没有加载 vue router 实例,也完成了对于路由参数的获取。需要注意的是,采用此方法,只能实现基于 param 方式进行传参的解耦。
针对定义路由规则时,指定 props 属性为 true 这一种情况,在 vue router 中,我们还可以给路由规则的 props 属性定义成一个对象或是函数。不过,如果定义成对象或是函数,此时并不能实现对于组件以及 vue router 间的解耦。
在将路由规则的 props 定义成对象后,此时不管路由参数中传递是任何值,最终获取到的都是对象中的值。同时,需要注意的是,props 中的属性值必须是静态的,也就是说,你不能采用类似于子组件同步获取父组件传递的值作为 props 中的属性值。
<script> const third = { props: ['name'], template: '<h3>当前是第三页 --- {{name}} </h3>' } const router = new vuerouter({ routes: [{ path: '/third/:name', component: third, props: { name: 'zhangsan' } }] }) const vm = new vue({ el: '#app', data: {}, methods: { gothird() { this.$router.push({ path: '/third' }) } }, router: router }) </script>
在对象模式中,我们只能接收静态的 props 属性值,而当我们使用函数模式之后,就可以对静态值做数据的进一步加工或者是与路由传参的值进行结合。
<script> const fourth = { props: ['id', 'name'], template: '<h3>当前是第四页 --- {{id}} --- {{name}} </h3>' } const router = new vuerouter({ routes: [{ path: '/fourth', component: fourth, props: (route) => ({ id: route.query.id, name: 'zhangsan' }) }] }) const vm = new vue({ el: '#app', data: {}, methods: { gofourth() { this.$router.push({ path: '/fourth' }) } }, router: router }) </script>
三、总结
这一章主要学习了如何通过使用 vue router 的实例方法,从而实现编程式导航,以及如何实现组件与 vue router 之间的解耦。至此,vue router 的一些基础使用方法也就大概介绍完了,其它的知识点将在后面的项目中具体使用到的时候再进行介绍,欢迎持续关注哈~~~
四、参考
3、
下一篇: Vue编程式跳转