您好,登錄后才能下訂單哦!
vue中使用addRoutes動態(tài)添加路由后刷新失效如何解決,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
1.按鈕點擊,保存路由并跳轉(zhuǎn)
(1).在router/index.js里聲明一個數(shù)組,里邊是一些固定的路由,比如你的登錄頁面、404等等
//router/index.js export const constantRouterMap=[ { path: '/', // name: 'HelloWorld', component: HelloWorld } ] Vue.use(Router) export default new Router({ routes: constantRouterMap })
(2).按鈕點擊,跳轉(zhuǎn)、保存路由;
注意,保存路由這一步驟,要做進要跳轉(zhuǎn)到的組件里,這是為了防止在beforeEach攔截這邊產(chǎn)生死循環(huán)
添加路由需要兩點,一是path,二是component,你可以封裝成方法,看著就會簡潔一點,我這里就不做了
記得要用concat方法連接,固定的路由和動態(tài)新加的路由,這樣瀏覽器回退的時候也能正常返回
//點擊跳轉(zhuǎn) <template> <div> 點擊新增 動態(tài)路由: "secondRouter" <br/> <el-button @click="srouter" type="primary">新增動態(tài)路由</el-button> </div> </template> <script> import router from 'vue-router' import {constantRouterMap} from '@/router' export default { name: 'kk', mounted(){ }, data () { return { msg: 'Welcome to Your Vue.js App' } }, methods:{ srouter(){ let newRoutes=constantRouterMap.concat([{path:'/secondRouter', component :resolve => require(["@/components/kk"], resolve ) }]) this.$router.addRoutes(newRoutes) this.$router.push({path:'/secondRouter'}) } } } </script> //跳轉(zhuǎn)過去的component組件,xxx.vue <template> <div class="secondRoute"> 恭喜你,動態(tài)添加路由成功,瀏覽器的鏈接已經(jīng)變化; <h4>無論你怎么刷新我都會留在當前頁面</h4> <h4>并且點擊瀏覽器回退鍵,我會跳到之前頁面,不會循環(huán)</h4> </div> </template> <script> import router2 from '@/router' import router from 'vue-router' export default { name: 'HelloWorld', mounted(){ localStorage.setItem('new',JSON.stringify({'path':'/secondRouter','component':'kk'}))//保存路由 }, data () { return { msg: 'Welcome to Your Vue.js App' } }, methods:{ } } </script>
2.路由攔截beforeEach
這里攔截的時候,就判斷l(xiāng)ocalStorage里邊有沒有保存新的動態(tài)路由,如果有,就進行判斷,邏輯處理,處理完之后就把保存的路由清除掉,防止進入死循環(huán)。
進入第一層判斷后,需要再次判斷一下是不是頁面的刷新事件
import router from './router' import { constantRouterMap } from '@/router' //router里的固定路由 router.beforeEach((to, from, next) => { if (localStorage.getItem('new')) { var c = JSON.parse(localStorage.getItem('new')), lastUrl=getLastUrl(window.location.href,'/'); if (c.path==lastUrl) { //動態(tài)路由頁面的刷新事件 let newRoutes = constantRouterMap.concat([{ path: c.path, component: resolve => require(["@/components/" + c.component + ""], resolve) }]) localStorage.removeItem('new') router.addRoutes(newRoutes) router.replace(c.path) //replace,保證瀏覽器回退的時候能直接返回到上個頁面,不會疊加 } } next() }) var getLastUrl=(str,yourStr)=>str.slice(str.lastIndexOf(yourStr))//取到瀏覽器出現(xiàn)網(wǎng)址的最后"/"出現(xiàn)的后邊的字符
ps:一開始我還以為匹配不到路由跳轉(zhuǎn)404要在攔截這里處理,后來發(fā)現(xiàn)根本不用,直接在注冊路由的時候加上下邊兩段就行了:
export const constantRouterMap = [{ path: '/', component: HelloWorld }, {//404 path: '/404', component: ErrPage }, { //重定向到404 path: '*', redirect: '/404' } ]
看完上述內(nèi)容,你們掌握vue中使用addRoutes動態(tài)添加路由后刷新失效如何解決的方法了嗎?如果還想學到更多技能或想了解更多相關內(nèi)容,歡迎關注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。