本教程操作环境:windows7系统、vue3版,DELL G3电脑。
Vue-router 是vue框架的路由插件。
(资料图)
vue-roter有几种模式
根据vue-router官网,我们可以明确看到vue-router的mode值有3种
hash
history
abstract
其中,hash 和 history 是 SPA 单页应用程序的基础。
先说结论: spa应用路由有2种模式,hash 和 history,vue路由有3种模式,比 spa 多了一个 abstract。
源码分析
在vue-router中通过mode这个参数修改路由的模式:
const router = new VueRouter({ mode: "history", routes: [...]})
具体怎么实现的呢,首先我们下载 vue-router 的源码
抽离出来对mode的处理
class vueRouter { constructor(options) { let mode = options.mode || "hash" this.fallback = mode === "history" && !supportsPushState && options.fallback !== false if (this.fallback) { mode = "hash" } if (!inBrowser) { mode = "abstract" } this.mode = mode switch (mode) { case "history": this.history = new HTML5History(this, options.base) break case "hash": this.history = new HashHistory(this, options.base, this.fallback) break case "abstract": this.history = new AbstractHistory(this, options.base) break default: if (process.env.NODE_ENV !== "production") { assert(false, `invalid mode: ${mode}`) } } }}
可以看到默认使用的是 hash 模式,当设置为 history 时,如果不支持 history 方法,也会强制使用 hash 模式。当不在浏览器环境,比如 node 中时,直接强制使用 abstract 模式。
hash模式
阅读这部分源码前,我们先来了解下 hash 的基础:根据MDN上的介绍,Location 接口的 hash 属性返回一个 USVString,其中会包含URL标识中的 "#" 和 后面URL片段标识符,"#" 和后面URL片段标识符被称为 hash。它有这样一些特点:
在第一个#后面出现的任何字符,都会被浏览器解读为位置标识符。这意味着,这些字符都不会被发送到服务器端。
单单改变#后的部分,浏览器只会滚动到相应位置,不会重新加载网页。
每一次改变#后的部分,都会在浏览器的访问历史中增加一个记录,使用"后退"按钮,就可以回到上一个位置。
可通过window.location.hash属性读取 hash 值,并且 window.location.hash 这个属性可读可写。
使用 window.addEventListener("hashchange", fun) 可以监听 hash 的变化
了解了这些基本知识后,我们继续来看 vue-router 源码对 /src/history/hash.js 的处理
const handleRoutingEvent = () => { const current = this.current if (!ensureSlash()) { return } this.transitionTo(getHash(), route => { if (supportsScroll) { handleScroll(this.router, route, current, true) } if (!supportsPushState) { replaceHash(route.fullPath) } }) } const eventType = supportsPushState ? "popstate" : "hashchange" window.addEventListener( eventType, handleRoutingEvent ) this.listeners.push(() => { window.removeEventListener(eventType, handleRoutingEvent) })
首先也是使用 window.addEventListener("hashchange", fun) 监听路由的变化,然后使用 transitionTo 方法更新视图
push (location: RawLocation, onComplete?: Function, onAbort?: Function) { const { current: fromRoute } = this this.transitionTo( location, route => { pushHash(route.fullPath) handleScroll(this.router, route, fromRoute, false) onComplete && onComplete(route) }, onAbort ) } replace (location: RawLocation, onComplete?: Function, onAbort?: Function) { const { current: fromRoute } = this this.transitionTo( location, route => { replaceHash(route.fullPath) handleScroll(this.router, route, fromRoute, false) onComplete && onComplete(route) }, onAbort ) }
vue-router 的2个主要API push 和 replace 也是简单处理了下 hash , 然后调用 transitionTo 方法更新视图
history模式
老规矩,先来了解下 HTML5History 的的基本知识:根据MDN上的介绍,History 接口允许操作浏览器的曾经在标签页或者框架里访问的会话历史记录。使用 back(), forward()和 go() 方法来完成在用户历史记录中向后和向前的跳转。HTML5引入了 history.pushState() 和 history.replaceState() 方法,它们分别可以添加和修改历史记录条目。稍微了解下 history.pushState():
window.onpopstate = function(e) { alert(2);}let stateObj = { foo: "bar",};history.pushState(stateObj, "page 2", "bar.html");
这将使浏览器地址栏显示为 mozilla.org/bar.html
,但并不会导致浏览器加载 bar.html ,甚至不会检查bar.html 是否存在。也就是说,虽然浏览器 URL 改变了,但不会立即重新向服务端发送请求,这也是 spa应用 更新视图但不 重新请求页面的基础。接着我们继续看 vue-router 源码对 /src/history/html5.js 的处理:
const handleRoutingEvent = () => { const current = this.current // Avoiding first `popstate` event dispatched in some browsers but first // history route not updated since async guard at the same time. const location = getLocation(this.base) if (this.current === START && location === this._startLocation) { return } this.transitionTo(location, route => { if (supportsScroll) { handleScroll(router, route, current, true) } }) } window.addEventListener("popstate", handleRoutingEvent) this.listeners.push(() => { window.removeEventListener("popstate", handleRoutingEvent) })
处理逻辑和 hash 相似,使用 window.addEventListener("popstate", fun) 监听路由的变化,然后使用 transitionTo 方法更新视图。push 和 replace 等方法就不再详细介绍。
abstract模式
最后我们直接来看一下对 /src/history/abstract.js 的处理:
constructor (router: Router, base: ?string) { super(router, base) this.stack = [] this.index = -1 }
首先定义了2个变量,stack 来记录调用的记录, index 记录当前的指针位置
push (location: RawLocation, onComplete?: Function, onAbort?: Function) { this.transitionTo( location, route => { this.stack = this.stack.slice(0, this.index + 1).concat(route) this.index++ onComplete && onComplete(route) }, onAbort ) } replace (location: RawLocation, onComplete?: Function, onAbort?: Function) { this.transitionTo( location, route => { this.stack = this.stack.slice(0, this.index).concat(route) onComplete && onComplete(route) }, onAbort ) }
push 和 replac方法 也是通过 stack 和 index 2个变量,模拟出浏览器的历史调用记录。
总结
终于到了最后的总结阶段了:
hash 和 history 的使用方式差不多,hash 中路由带 # ,但是使用简单,不需要服务端配合,站在技术角度讲,这个是配置最简单的模式,本人感觉这也是 hash 被设为默认模式的原因
history 模式需要服务端配合处理404的情况,但是路由中不带 # ,比 hash 美观一点。
abstract 模式支持所有JavaScript运行环境,如Node.js服务器端,如果发现没有浏览器的API,路由会自动强制进入这个模式。
abstract 模式没有使用浏览器api,可以放到node环境或者桌面应用中,是对 spa应用 的兜底和能力扩展。
【相关视频教程推荐:vue视频教程、web前端入门】
以上就是vue-roter有几种模式的详细内容,更多请关注php中文网其它相关文章!