您好,登錄后才能下訂單哦!
這篇文章主要介紹了vue路由跳轉(zhuǎn)router-link清除歷史記錄的方法的相關(guān)知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇vue路由跳轉(zhuǎn)router-link清除歷史記錄的方法文章都會有所收獲,下面我們一起來看看吧。
1.在vue項目中說起路由跳轉(zhuǎn),我們最先想到的就是router-link標簽以及this.$router.push函數(shù)。
router-link和this.\$router.push的實現(xiàn)原理是一樣的,在點擊router-link時,內(nèi)部調(diào)用的就是this.$router.push。
2.this.\$router.push這個方法會向 history 棧添加一個新的記錄,所以,當(dāng)用戶點擊瀏覽器后退按鈕時,則回到之前的 URL。
那在我們使用路由跳轉(zhuǎn)的時候如何去掉歷史記錄呢?
1.使用router-link標簽時去掉歷史記錄:加上replace屬性
<router-link to='/project_selection' replace class='btn_none' tag="a">項目列表</router-link>
2.使用this.\$router.push標簽時去掉歷史記錄:加上replace屬性,默認值為false
this.$router.push({path: '/project_selection',replace:true})
3.使用this.\$router.replace標簽時去掉歷史記錄
this.$router.replace({path: '/project_selection'})
所有內(nèi)容源自于官網(wǎng):vue路由核心插件
vue路由跳轉(zhuǎn)一般情況下是使用push,
this.$router.push({ path: "/testTeam/testTeam", });
若是特殊需求,頁面跳轉(zhuǎn)后不記錄到歷史記錄中,將push改為replace即可
this.$router.replace({path: '/project_selection'})
關(guān)于“vue路由跳轉(zhuǎn)router-link清除歷史記錄的方法”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“vue路由跳轉(zhuǎn)router-link清除歷史記錄的方法”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。