91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

vue跳轉同一路由報錯如何解決

發布時間:2023-05-09 14:53:20 來源:億速云 閱讀:155 作者:iii 欄目:開發技術

今天小編給大家分享一下vue跳轉同一路由報錯如何解決的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

    vue跳轉同一路由報錯

    vue中,如果跳轉同一個頁面路由,雖不會影響功能,但是會報錯

    vue跳轉同一路由報錯如何解決

    原因:路由的push會向歷史記錄棧中添加一個記錄,同時跳轉同一個路由頁面,會造成一個重復的添加,導致頁面的報錯

    解決方案:在router的index.js中重寫vue的路由跳轉push

    const originalPush = Router.prototype.push
    Router.prototype.push = function push(location) {
    	return originalPush.call(this, location).catch(err => err);
    }

    編程式路由跳轉多次點擊報錯問題

    使用編程式路由進行跳轉時,控制臺報錯,如下所示。

    vue跳轉同一路由報錯如何解決

    問題分析

    該問題存在于Vue-router v3.0之后的版本,由于新加入的同一路徑跳轉錯誤異常功能導致。

    解決方法

    重寫 $router.push$router.replace 方法,添加異常處理。

    //push
    const VueRouterPush = VueRouter.prototype.push
    VueRouter.prototype.push = function push (to) {
      return VueRouterPush.call(this, to).catch(err => err)
    }
    
    //replace
    const VueRouterReplace = VueRouter.prototype.replace
    VueRouter.prototype.replace = function replace (to) {
      return VueRouterReplace.call(this, to).catch(err => err)
    }

    示例

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Vue 編程式路由跳轉多次點擊報錯問題</title>
    </head>
    <body>
        <div id="app">
            <button @click="pageFirst">Page First</button>
            <button @click="pageSecond">Page Second</button>
            <router-view></router-view>
        </div> 
    
        <script src="https://unpkg.com/vue/dist/vue.js"></script>
        <script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
        <script>
            const First = { template: '<div>First Page</div>' } //調用路由name屬性
            const Second = { template: '<div>Second Page</div>' }
            routes = [
                { path:'/first', name:"first" ,component: First },  //設置路由name屬性
                { path: '/second', name:"second", component: Second }
            ]
            router = new VueRouter({
                routes
            })
    
            //push
            const VueRouterPush = VueRouter.prototype.push
            VueRouter.prototype.push = function push (to) {
                return VueRouterPush.call(this, to).catch(err => err)
            }
    
            //replace
            const VueRouterReplace = VueRouter.prototype.replace
            VueRouter.prototype.replace = function replace (to) {
                return VueRouterReplace.call(this, to).catch(err => err)
            }
    
            const app = new Vue({
                router,
                methods: {
                    pageFirst(){ router.push('/first') },
                    pageSecond(){ router.push({ name: 'second' }) },
                },
            }).$mount('#app')
        </script>
    </body>
    </html>

    以上就是“vue跳轉同一路由報錯如何解決”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。

    向AI問一下細節

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

    vue
    AI

    屏山县| 蓝山县| 顺昌县| 宣化县| 会理县| 武鸣县| 太和县| 徐汇区| 镇沅| 色达县| 永城市| 蛟河市| 西乌| 安徽省| 贵州省| 保定市| 永修县| 绥阳县| 遵义市| 申扎县| 二手房| 晋中市| 房山区| 营口市| 台州市| 宁波市| 西丰县| 曲沃县| 花莲市| 米泉市| 腾冲县| 盐源县| 绥滨县| 霍城县| 正阳县| 保定市| 临桂县| 新营市| 海阳市| 江川县| 工布江达县|