目前前端三杰 Angular、React、Vue 都推介单页面应用 SPA 开发模式,在路由切换时替换 DOM Tree 中最小修改的部分 DOM,来减小原先由于多页应用的页面跳转带来的巨量性能损耗。它们都有本身的典型路由解决方案,@angular/router、react-router、vue-router。javascript
通常来讲,这些路由插件老是提供两种不一样方式的路由方式: Hash 和 History,有时也会提供非浏览器环境下的路由方式 Abstract,在 vue-router 中是使用了外观模式将几种不一样的路由方式提供了一个一致的高层接口,让咱们能够更解耦的在不一样路由方式中切换。html
值得一提的是,Hash 和 History 除了外观上的不一样以外,还一个区别是:Hash 方式的状态保存须要另行传递,而 HTML5 History 原生提供了自定义状态传递的能力,咱们能够直接利用其来传递信息。前端
下面咱们具体看看这两种方式都有哪些特色,并提供简单的实现,好比基本的功能,更复杂的功能好比懒加载、动态路径匹配、嵌套路由、路由别名等等,能够关注一下后面的 vue-router 源码解读方面的博客。vue
Hash 方法是在路由中带有一个 #
,主要原理是经过监听 #
后的 URL 路径标识符的更改而触发的浏览器 hashchange
事件,而后经过获取 location.hash
获得当前的路径标识符,再进行一些路由跳转的操做,参见 MDNhtml5
location.href
:返回完整的 URLlocation.hash
:返回 URL 的锚部分location.pathname
:返回 URL 路径名hashchange
事件:当 location.hash
发生改变时,将触发这个事件好比访问一个路径 http://sherlocked93.club/base/#/page1
,那么上面几个值分别为:java
# http://sherlocked93.club/base/#/page1 { "href": "http://sherlocked93.club/base/#/page1", "pathname": "/base/", "hash": "#/page1" }
注意: Hash 方法是利用了至关于页面锚点的功能,因此与原来的经过锚点定位来进行页面滚动定位的方式冲突,致使定位到错误的路由路径,所以须要采用别的办法,以前在写 progress-catalog 这个插件碰到了这个状况。react
这里简单作一个实现,原理是把目标路由和对应的回调记录下来,点击跳转触发 hashchange
的时候获取当前路径并执行对应回调,效果:git
class RouterClass { constructor() { this.routes = {} // 记录路径标识符对应的cb this.currentUrl = '' // 记录hash只为方便执行cb window.addEventListener('load', () => this.render()) window.addEventListener('hashchange', () => this.render()) } /* 初始化 */ static init() { window.Router = new RouterClass() } /* 注册路由和回调 */ route(path, cb) { this.routes[path] = cb || function() {} } /* 记录当前hash,执行cb */ render() { this.currentUrl = location.hash.slice(1) || '/' this.routes[this.currentUrl]() } }
具体实现参照 CodePengithub
若是但愿使用脚原本控制 Hash 路由的后退,能够将经历的路由记录下来,路由后退跳转的实现是对 location.hash
进行赋值。可是这样会引起从新引起 hashchange
事件,第二次进入 render
。因此咱们须要增长一个标志位,来标明进入 render
方法是由于回退进入的仍是用户跳转vue-router
class RouterClass { constructor() { this.isBack = false this.routes = {} // 记录路径标识符对应的cb this.currentUrl = '' // 记录hash只为方便执行cb this.historyStack = [] // hash栈 window.addEventListener('load', () => this.render()) window.addEventListener('hashchange', () => this.render()) } /* 初始化 */ static init() { window.Router = new RouterClass() } /* 记录path对应cb */ route(path, cb) { this.routes[path] = cb || function() {} } /* 入栈当前hash,执行cb */ render() { if (this.isBack) { // 若是是由backoff进入,则置false以后return this.isBack = false // 其余操做在backoff方法中已经作了 return } this.currentUrl = location.hash.slice(1) || '/' this.historyStack.push(this.currentUrl) this.routes[this.currentUrl]() } /* 路由后退 */ back() { this.isBack = true this.historyStack.pop() // 移除当前hash,回退到上一个 const { length } = this.historyStack if (!length) return let prev = this.historyStack[length - 1] // 拿到要回退到的目标hash location.hash = `#${ prev }` this.currentUrl = prev this.routes[prev]() // 执行对应cb } }
代码实现参考 CodePen
HTML5 提供了一些路由操做的 Api,关于使用能够参看 <Manipulating the browser history> 这篇 MDN 上的文章,这里就列举一下经常使用 Api 和他们的做用,具体参数什么的就不介绍了,MDN 上都有
history.go(n)
:路由跳转,好比n为 2
是往前移动2个页面,n为 -2
是向后移动2个页面,n为0是刷新页面history.back()
:路由后退,至关于 history.go(-1)
history.forward()
:路由前进,至关于 history.go(1)
history.pushState()
:添加一条路由历史记录,若是设置跨域网址则报错history.replaceState()
:替换当前页在路由历史记录的信息popstate
事件:当活动的历史记录发生变化,就会触发 popstate
事件,在点击浏览器的前进后退按钮或者调用上面前三个方法的时候也会触发,参见 MDN 将以前的例子改造一下,在须要路由跳转的地方使用 history.pushState
来入栈并记录 cb
,前进后退的时候监听 popstate
事件拿到以前传给 pushState
的参数并执行对应 cb
,由于借用了浏览器本身的 Api,所以代码看起来整洁很多
class RouterClass { constructor(path) { this.routes = {} // 记录路径标识符对应的cb history.replaceState({ path }, null, path) // 进入状态 this.routes[path] && this.routes[path]() window.addEventListener('popstate', e => { const path = e.state && e.state.path this.routes[path] && this.routes[path]() }) } /* 初始化 */ static init() { window.Router = new RouterClass(location.pathname) } /* 注册路由和回调 */ route(path, cb) { this.routes[path] = cb || function() {} } /* 跳转路由,并触发路由对应回调 */ go(path) { history.pushState({ path }, null, path) this.routes[path] && this.routes[path]() } }
Hash 模式是使用 URL 的 Hash 来模拟一个完整的 URL,所以当 URL 改变的时候页面并不会重载。History 模式则会直接改变 URL,因此在路由跳转的时候会丢失一些地址信息,在刷新或直接访问路由地址的时候会匹配不到静态资源。所以须要在服务器上配置一些信息,让服务器增长一个覆盖全部状况的候选资源,好比跳转 index.html
什么的,通常来讲是你的 app 依赖的页面,事实上 vue-router 等库也是这么推介的,还提供了常见的服务器配置。
代码实现参考 CodePen
网上的帖子大多深浅不一,甚至有些先后矛盾,在下的文章都是学习过程当中的总结,若是发现错误,欢迎留言指出~
参考:
PS:欢迎你们关注个人公众号【前端下午茶】,一块儿加油吧~
另外能够加入「前端下午茶交流群」微信群,长按识别下面二维码便可加我好友,备注加群,我拉你入群~