Vue 进阶 [五] 手写VueRouter

2023-10-29 18:38

本文主要是介绍Vue 进阶 [五] 手写VueRouter,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

人生当自勉,学习需坚持。

定义

Vue Router 是 Vue.js 官方的路由管理器。它和 Vue.js 的核心深度集成,让构建单页面应用变得易如反掌。包含的功能有:

  • 嵌套的路由/视图表
  • 模块化的、基于组件的路由配置
  • 路由参数、查询、通配符
  • 基于 Vue.js 过渡系统的视图过渡效果
  • 细粒度的导航控制
  • 带有自动激活的 CSS class 的链接
  • HTML5 历史模式或 hash 模式,在 IE9 中自动降级
  • 自定义的滚动条行为

VueRouter使用的核心步骤

步骤一:使用vue-router 插件,router.js

import Router from 'vue-router'
Vue.use(Router)

步骤二:创建Router 实例,router.js

export default new Router({...})

步骤三:在组件上添加该实例,main.js

import router from './router'
new Vue({
router,
}).$mount("#app");

步骤四:添加路由视图 App.vue

<router-view></router-view>

导航:

<router-link to="/">Home</router-link>
<router-link to="/about">About</router-link>

vue-router 手动实现

需求分析

  • 作为一个插件存在:实现VueRouter类和install方法
  • 实现两个全局组件:router-view用于显示匹配组件内容,router-link用于跳转
  • 监控url变化:监听hashchange或popstate事件
  • 响应最新url:创建一个响应式的属性current,当它改变时获取对应组件并显示

实现一个插件:创建VueRouter类和install方法

let Vue; // 引用构造函数,VueRouter中要使用
// 保存选项
class VueRouter {
constructor(options) {
this.$options = options;
}
}
// 插件:实现install方法,注册$router
VueRouter.install = function(_Vue) {
// 引用构造函数,VueRouter中要使用
Vue = _Vue;
Vue.mixin({
beforeCreate() {
// 只有根组件拥有router选项
if (this.$options.router) {
// vm.$router
Vue.prototype.$router = this.$options.router;
}
}
});
};
export default VueRouter;

创建router-view和router-link

 zrouter-link.js

export default {props: {to: {type: String,required: true},},render(h) {// <a href="#/about">abc</a>// <router-link to="/about">xxx</router-link>// h(tag, data, children)console.log(this.$slots);return h('a', {attrs: {href: '#' + this.to}}, this.$slots.default)// return <a href={'#' + this.to}>{this.$slots.default}</a>}
}

zrouter-view.js

export default {render(h) {//获取path对应的componentconst {routeMap,current} = this.$router;console.log(routeMap, current);const component = routeMap[current].component || null;return h(component)}
}

监控url变化

定义响应式的current属性,监听hashchange事件

class VueRouter {
constructor(options) {
// current应该是响应式的
Vue.util.defineReactive(this, 'current', '/')
// 定义响应式的属性current
const initial = window.location.hash.slice(1) || '/'
Vue.util.defineReactive(this, 'current', initial)
// 监听hashchange事件
window.addEventListener('hashchange', this.onHashChange.bind(this))
window.addEventListener('load', this.onHashChange.bind(this))
}
onHashChange() {
this.current = window.location.hash.slice(1)
}
}

创建路由映射表

        //创建一个路由映射表this.routeMap = {}options.routes.forEach(route => {this.routeMap[route.path] = route})

较完整代码

import Link from './zrouter-link'
import View from './zrouter-view'
//1、实现一个插件:挂载$router ==>实现install 方法
let Vue
class ZVueRouter {constructor(options) {this.$options = options//需要创建响应式的current属性Vue.util.defineReactive(this, 'current', '/')// this.current = '/'// 监听URL的变化window.addEventListener('hashchange', this.onHashChange.bind(this))window.addEventListener('load', this.onHashChange.bind(this))//创建一个路由映射表this.routeMap = {}options.routes.forEach(route => {this.routeMap[route.path] = route})}onHashChange() {console.log(window.location.hash)this.current = window.location.hash.slice(1)}
}
ZVueRouter.install = function (_Vue) {//保存构造函数,在ZVueRouter中使用Vue = _Vue//挂载$router// 怎么获取根实例中的router 选项 使用全局混入//Vue.mixin({//此处写的生命周期的钩子 会在所有组件中都执行一遍beforeCreate() {// console.log(this)// 确保根实例的时候才执行if (this.$options.router) {Vue.prototype.$router = this.$options.router}},})//任务2、实现两个全局组件router-link 和 router-view// Vue.component('router-link', {//     props: {//         to: {//             type: String,//             required: true,//         },//     },//     render(h) {//         // 希望渲染出一个a 标签//         // h(tag,data,children)//         //<router-link to='/about'></router-link>//         //   console.log(this.$slots)//         return h('a', {//             attrs: {//                 href: "#" + this.to//             }//         }, this.$slots.default)//     },// })// Vue.component('router-view', {//     render(h) {//         // 获取path 对应的component//         // let component = null//         console.log(this)//         console.log('router-view this.$router', this.$router)//         // this.$router.$options.routes.forEach((route) => {//         //     if (route.path === this.$router.current) {//         //         component = route.component//         //     }//         // })//         // 以上这样写每次渲染都需要遍历找一遍 优化//         const {//             routeMap,//             current//         } = this.$router//         const component = routeMap[current].component || null;//         return h(component)//     },// })// 将router-link router-view 单抽取出来Vue.component('router-link', Link)Vue.component('router-view', View)}
export default ZVueRouter

代码地址

https://gitee.com/xiaozhidayu/vue-study-component

https://gitee.com/xiaozhidayu/vue-study-component.git

人生就是一场马拉松。领先时不必沾沾自喜,落后时也不用慌乱着急,此刻的得失成败,不代表最终的成绩。把鲜花和掌声当作前进的动力,把挫折和失败化为奋进的勇气,只要不放弃,再平凡的人生也能创造奇迹

这篇关于Vue 进阶 [五] 手写VueRouter的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/302577

相关文章

在React中引入Tailwind CSS的完整指南

《在React中引入TailwindCSS的完整指南》在现代前端开发中,使用UI库可以显著提高开发效率,TailwindCSS是一个功能类优先的CSS框架,本文将详细介绍如何在Reac... 目录前言一、Tailwind css 简介二、创建 React 项目使用 Create React App 创建项目

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

Spring Boot + MyBatis Plus 高效开发实战从入门到进阶优化(推荐)

《SpringBoot+MyBatisPlus高效开发实战从入门到进阶优化(推荐)》本文将详细介绍SpringBoot+MyBatisPlus的完整开发流程,并深入剖析分页查询、批量操作、动... 目录Spring Boot + MyBATis Plus 高效开发实战:从入门到进阶优化1. MyBatis

Vue中组件之间传值的六种方式(完整版)

《Vue中组件之间传值的六种方式(完整版)》组件是vue.js最强大的功能之一,而组件实例的作用域是相互独立的,这就意味着不同组件之间的数据无法相互引用,针对不同的使用场景,如何选择行之有效的通信方式... 目录前言方法一、props/$emit1.父组件向子组件传值2.子组件向父组件传值(通过事件形式)方

css中的 vertical-align与line-height作用详解

《css中的vertical-align与line-height作用详解》:本文主要介绍了CSS中的`vertical-align`和`line-height`属性,包括它们的作用、适用元素、属性值、常见使用场景、常见问题及解决方案,详细内容请阅读本文,希望能对你有所帮助... 目录vertical-ali

使用PyTorch实现手写数字识别功能

《使用PyTorch实现手写数字识别功能》在人工智能的世界里,计算机视觉是最具魅力的领域之一,通过PyTorch这一强大的深度学习框架,我们将在经典的MNIST数据集上,见证一个神经网络从零开始学会识... 目录当计算机学会“看”数字搭建开发环境MNIST数据集解析1. 认识手写数字数据库2. 数据预处理的

浅析CSS 中z - index属性的作用及在什么情况下会失效

《浅析CSS中z-index属性的作用及在什么情况下会失效》z-index属性用于控制元素的堆叠顺序,值越大,元素越显示在上层,它需要元素具有定位属性(如relative、absolute、fi... 目录1. z-index 属性的作用2. z-index 失效的情况2.1 元素没有定位属性2.2 元素处

Python实现html转png的完美方案介绍

《Python实现html转png的完美方案介绍》这篇文章主要为大家详细介绍了如何使用Python实现html转png功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 1.增强稳定性与错误处理建议使用三层异常捕获结构:try: with sync_playwright(

Vue 调用摄像头扫描条码功能实现代码

《Vue调用摄像头扫描条码功能实现代码》本文介绍了如何使用Vue.js和jsQR库来实现调用摄像头并扫描条码的功能,通过安装依赖、获取摄像头视频流、解析条码等步骤,实现了从开始扫描到停止扫描的完整流... 目录实现步骤:代码实现1. 安装依赖2. vue 页面代码功能说明注意事项以下是一个基于 Vue.js

CSS @media print 使用详解

《CSS@mediaprint使用详解》:本文主要介绍了CSS中的打印媒体查询@mediaprint包括基本语法、常见使用场景和代码示例,如隐藏非必要元素、调整字体和颜色、处理链接的URL显示、分页控制、调整边距和背景等,还提供了测试方法和关键注意事项,并分享了进阶技巧,详细内容请阅读本文,希望能对你有所帮助...