欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

vue-roter有哪些模式

本篇內(nèi)容主要講解“vue-roter有哪些模式”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“vue-roter有哪些模式”吧!

創(chuàng)新互聯(lián)主要從事網(wǎng)頁設(shè)計、PC網(wǎng)站建設(shè)(電腦版網(wǎng)站建設(shè))、wap網(wǎng)站建設(shè)(手機版網(wǎng)站建設(shè))、響應(yīng)式網(wǎng)站開發(fā)、程序開發(fā)、網(wǎng)站優(yōu)化、微網(wǎng)站、微信小程序開發(fā)等,憑借多年來在互聯(lián)網(wǎng)的打拼,我們在互聯(lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)積累了豐富的網(wǎng)站設(shè)計制作、網(wǎng)站制作、網(wǎng)站設(shè)計、網(wǎng)絡(luò)營銷經(jīng)驗,集策劃、開發(fā)、設(shè)計、營銷、管理等多方位專業(yè)化運作于一體。

vue-roter有3種模式:1、hash模式,用URL hash值來做路由,支持所有瀏覽器;該模式實現(xiàn)的路由,在通過鏈接后面添加““#”+路由名字”。2、history模式,由h6提供的history對象實現(xiàn),依賴H5 History API和服務(wù)器配置。3、abstract模式,支持所有JS運行環(huán)境,如Node服務(wù)器端,如果發(fā)現(xiàn)沒有瀏覽器的API,路由會自動強制進入該模式。

vue-roter有哪些模式

本教程操作環(huán)境:windows7系統(tǒng)、vue3版,DELL G3電腦。

Vue-router 是vue框架的路由插件。

vue-roter有幾種模式

vue-roter有哪些模式

根據(jù)vue-router官網(wǎng),我們可以明確看到vue-router的mode值有3種

  • hash

  • history

  • abstract

其中,hash 和 history 是 SPA 單頁應(yīng)用程序的基礎(chǔ)。

先說結(jié)論: spa應(yīng)用路由有2種模式,hash 和 history,vue路由有3種模式,比 spa 多了一個 abstract。

源碼分析

在vue-router中通過mode這個參數(shù)修改路由的模式:

const router = new VueRouter({
  mode: 'history',
  routes: [...]
})

具體怎么實現(xiàn)的呢,首先我們下載 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}`)
                }
        }
    }
}

可以看到默認(rèn)使用的是 hash 模式,當(dāng)設(shè)置為 history 時,如果不支持 history 方法,也會強制使用 hash 模式。 當(dāng)不在瀏覽器環(huán)境,比如 node 中時,直接強制使用 abstract 模式。

hash模式

閱讀這部分源碼前,我們先來了解下 hash 的基礎(chǔ): 根據(jù)MDN上的介紹,Location 接口的 hash 屬性返回一個 USVString,其中會包含URL標(biāo)識中的 '#' 和 后面URL片段標(biāo)識符,'#' 和后面URL片段標(biāo)識符被稱為 hash。 它有這樣一些特點:

  • 在第一個#后面出現(xiàn)的任何字符,都會被瀏覽器解讀為位置標(biāo)識符。這意味著,這些字符都不會被發(fā)送到服務(wù)器端。

  • 單單改變#后的部分,瀏覽器只會滾動到相應(yīng)位置,不會重新加載網(wǎng)頁。

  • 每一次改變#后的部分,都會在瀏覽器的訪問歷史中增加一個記錄,使用"后退"按鈕,就可以回到上一個位置。

  • 可通過window.location.hash屬性讀取 hash 值,并且 window.location.hash 這個屬性可讀可寫。

  • 使用 window.addEventListener("hashchange", fun) 可以監(jiān)聽 hash 的變化

了解了這些基本知識后,我們繼續(xù)來看 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) 監(jiān)聽路由的變化,然后使用 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 , 然后調(diào)用 transitionTo 方法更新視圖

history模式

老規(guī)矩,先來了解下 HTML5History 的的基本知識: 根據(jù)MDN上的介紹,History 接口允許操作瀏覽器的曾經(jīng)在標(biāo)簽頁或者框架里訪問的會話歷史記錄。 使用 back(),  forward()和  go() 方法來完成在用戶歷史記錄中向后和向前的跳轉(zhuǎn)。 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 ,但并不會導(dǎo)致瀏覽器加載 bar.html ,甚至不會檢查bar.html 是否存在。 也就是說,雖然瀏覽器 URL 改變了,但不會立即重新向服務(wù)端發(fā)送請求,這也是 spa應(yīng)用 更新視圖但不 重新請求頁面的基礎(chǔ)。 接著我們繼續(xù)看 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) 監(jiān)聽路由的變化,然后使用 transitionTo 方法更新視圖。 push 和 replace 等方法就不再詳細(xì)介紹。

abstract模式

最后我們直接來看一下對 /src/history/abstract.js 的處理:

  constructor (router: Router, base: ?string) {
    super(router, base)
    this.stack = []
    this.index = -1
  }

首先定義了2個變量,stack 來記錄調(diào)用的記錄, index 記錄當(dāng)前的指針位置

  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個變量,模擬出瀏覽器的歷史調(diào)用記錄。

到此,相信大家對“vue-roter有哪些模式”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

名稱欄目:vue-roter有哪些模式
本文網(wǎng)址:http://aaarwkj.com/article20/igjsjo.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序網(wǎng)站設(shè)計公司、用戶體驗、品牌網(wǎng)站制作、外貿(mào)網(wǎng)站建設(shè)企業(yè)建站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

手機網(wǎng)站建設(shè)
亚洲最新精品一区二区| 久久婷婷国产综合精品青草| 91制片国产在线观看| 国产精品推荐在线观看| 高清区一区二区在线播放 | av资源天堂第一区第二区第三区 | 中文字幕五月久久婷热| 日本理论高清在线观看| 国产麻豆剧传媒国产av| 亚洲精品丝袜成人偷拍| 成人黄色18免费网站| 永久免费成人在线视频| 欧美日韩激情在线一区| 丰满少妇一级淫片在线播放| 亚洲国产成人精品av在线| 亚洲免费视频一二三区| 西西美女掰开阴让你看| 国产尹人99大香蕉| 欧美另类精品一区二区| 国内精品久久久久久2021| 日韩欧美亚洲福利在线| 日韩精品成人一区二区三区免费| 亚洲国产精品视频自拍| 亚洲香蕉视频在线播放| 日本不卡一区二区视频| 自拍偷拍欧美日韩第一页| 婷婷六月亚洲中文字幕| 日本岛国免费一区二区| 午夜福利视频在线观看| 久草亚洲一区二区三区av| 国产一区二区激情在线| 四影虎影永久免费观看| 成年人三级黄色片视频| 人妻的秘密一区二区三区| 一区二区视频精品在线观看| 亚洲国产成人av精品精品国产自| 欧美成人一区二区三区八| 亚洲欧美综合精品二区| 极品大胸美女被啪啪的高潮| 久久久精品国产亚洲av色哟哟| 女同三人按摩高潮喷出|