中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue-router初始化的示例分析

發布時間:2021-07-22 15:59:52 來源:億速云 閱讀:206 作者:小新 欄目:web開發

這篇文章主要為大家展示了“vue-router初始化的示例分析”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“vue-router初始化的示例分析”這篇文章吧。

vue router 的初始化使用步驟

我們首先來看 vue-router 的使用步驟,然后再分別去看各個步驟都發生了什么。

使用 vue-router 需要經過一下幾個步驟:

引入 vue-router:

import VueRouter from 'vue-router';

利用 vue 的插件機制,加載 vue-router:

Vue.use(VueRouter);

實例化 VueRouter:

const router = new VueRouter({
routes
})

實例化 Vue:

const app = new Vue({
router
}).$mount('#app');

Vue 的插件機制

vue 提供了一個 use 方法,來加載插件:

Vue.use = function (plugin: Function | Object) {
 const installedPlugins = (this._installedPlugins || (this._installedPlugins = []));
 if (installedPlugins.indexOf(plugin) > -1) {
  return this;
 }

 // additional parameters
 const args = toArray(arguments, 1);
 args.unshift(this);
 if (typeof plugin.install === 'function') {
  plugin.install.apply(plugin, args);
 } else if (typeof plugin === 'function') {
  plugin.apply(null, args);
 }
 installedPlugins.push(plugin);
 return this;
}

該方法首先檢查插件是否已經加載,如果已經加載,直接返回 this。

如果沒有加載過,會取所有的參數,并將 this 放在第一個。優先執行 plugin.install 方法,若不能執行,則直接執行 plugin 自身。

最后將 plugin push 到插件列表中。

那么我們就需要看 VueRouter 的 install 方法做了什么,VueRouter 類定義在 src/index.js 文件中。

利用 vue 的插件機制,加載 vue-router

入口文件 index.js 對外 export 了一個 VueRouter 類。VueRouter 類包含了 router 的各種方法,我們直接先來看一下 install 方法。

install 方法在 index.js 中綁定在 VueRouter 類上:

import { install } from './install'
VueRouter.install = install

它的實際實現是在 ./install.js 中,install 方法主要做了以下幾個事情:

1、設置了兩個 mixin:beforeCreate 和 destroyed。

Vue.mixin({
 beforeCreate () {
  if (isDef(this.$options.router)) {
   this._routerRoot = this
   this._router = this.$options.router
   this._router.init(this)
   Vue.util.defineReactive(this, '_route', this._router.history.current)
  } else {
   this._routerRoot = (this.$parent && this.$parent._routerRoot) || this
  }
  registerInstance(this, this)
 },
 destroyed () {
  registerInstance(this)
 }
})

2、在 Vue 上綁定 $route 和 $router。

Object.defineProperty(Vue.prototype, '$router', {
 get () { return this._routerRoot._router }
})

Object.defineProperty(Vue.prototype, '$route', {
 get () { return this._routerRoot._route }
})

3、注冊兩個組件,View 和 Link。

Vue.component('RouterView', View)
Vue.component('RouterLink', Link)

4、設置 beforeRouteEnter、beforeRouteLeave 和 beforeRouteUpdate 的 merge 策略。merge 策略的介紹可以見 這里 ,簡單來說就是有重復的值時如何合并。

const strats = Vue.config.optionMergeStrategies
// use the same hook merging strategy for route hooks
strats.beforeRouteEnter = strats.beforeRouteLeave = strats.beforeRouteUpdate = strats.created

實例化 VueRouter

我們來看一下 VueRouter 的構造函數。首先,constructor 會初始化一些屬性:

this.app = null
this.apps = []
this.options = options
this.beforeHooks = []
this.resolveHooks = []
this.afterHooks = []
this.matcher = createMatcher(options.routes || [], this)

其中 matcher 比較重要,后面會詳細說。

之后會決定使用哪種模式:

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}`)
  }
}

由于 history 模式中的pushstate方法還有一些瀏覽器沒有支持。history 模式在瀏覽器不支持時會回退到hash模式。

之后根據不同模式選擇實例化不同模式的history類,可以看到 hash 模式和 history 模式分別對應了 HashHistory 和 HTML5History 兩個類。

此外,如果是服務器端渲染,需要進行 router 匹配來獲取要渲染的頁面。此時服務器環境中沒有history api,因此要自行抽象實現一個,就是 AbstractHistory。

實例化 Vue

實例化為Vue 類時,會將 VueRouter 的實例傳入,這個變量放在 this.$options.router 中。由于 vue router 時以插件形式引入的,因此 這個 this.$options.router 還是給 vue router 自身來用的。

以上是“vue-router初始化的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大英县| 玛纳斯县| 茶陵县| 西乌珠穆沁旗| 沙坪坝区| 鞍山市| 射洪县| 左云县| 扶余县| 北票市| 涿鹿县| 辉南县| 江达县| 盐边县| 玛多县| 雷山县| 松原市| 沾益县| 介休市| 揭阳市| 沿河| 浠水县| 英吉沙县| 太和县| 临清市| 翁源县| 八宿县| 岚皋县| 平山县| 永宁县| 柞水县| 黔江区| 浮山县| 虞城县| 温州市| 乌兰察布市| 怀化市| 泰来县| 大理市| 东明县| 大宁县|