亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

    日土县| 青田县| 咸宁市| 满洲里市| 平凉市| 邛崃市| 开平市| 来安县| 囊谦县| 侯马市| 英吉沙县| 开原市| 满城县| 常德市| 普安县| 建宁县| 洪江市| 花垣县| 罗源县| 南汇区| 玛纳斯县| 虹口区| 贵德县| 德江县| 缙云县| 澳门| 新竹市| 桃江县| 铜陵市| 曲麻莱县| 禄劝| 庐江县| 兴隆县| 巴中市| 综艺| 祁阳县| 彭阳县| 麻城市| 新沂市| 咸阳市| 成武县|