Home > Web Front-end > JS Tutorial > body text

How does vue solve the problem of refresh failure after addRoutes dynamically adds routes?

不言
Release: 2018-07-09 14:02:17
Original
8613 people have browsed it

This article mainly introduces how vue solves the problem of refresh failure after addRoutes dynamically adds routes. It has a certain reference value. Now I share it with you. Friends in need can refer to it

Preface

In some scenarios, we need to use addRoutes to dynamically add routes, but they will become invalid after refreshing. I happened to encounter this application scenario in the project some time ago, so I took the time to study it, share and record it. Please correct me if I am wrong.
Application scenario: User A logs in to the system, and there is a button on the page. After clicking, the route will be dynamically added and jump . After jumping, the user will also refresh Stay on the current page. If you don’t click this button and enter the address in the browser, the user will jump to the 404 page

github:https://github.com/Mrblackant...
View online :http://an888.net/router/keepR...
How does vue solve the problem of refresh failure after addRoutes dynamically adds routes?

Idea

1. The user clicks the button and uses addRutes to dynamically add routes and jump Transfer and save the route;
2. When the user refreshes the newly jumped page, use beforeEach to intercept and judge. If it is found that the route has been saved before, and it is judged that the new page is just a refresh event, then add the previously saved route Come in;

Code

1. Click the button, save the route and jump

(1). Declare one in router/index.js Array, which contains some fixed routes, such as your login page, 404, etc.
//router/index.js
export const constantRouterMap=[
    {
      path: '/',
      // name: 'HelloWorld',
      component: HelloWorld
    }
  ]
Vue.use(Router)
export default new Router({
  routes: constantRouterMap
})
Copy after login
(2). Click the button to jump and save the route;
Note that saving the route Steps need to be entered into the component to be jumped to. This is to prevent an infinite loop in the beforeEach interception.
Adding routing requires two points, one is the path, and the other is the component. You can encapsulate it into a method. , it will be simpler when you look at it, I won’t do it here
Remember to use the concat method to connect, fixed routes and dynamically added routes, so that the browser can return normally when it rolls back
//点击跳转


//跳转过去的component组件,xxx.vue
Copy after login

2. Route interception beforeEach

When intercepting here, it will be judged whether there is a new dynamic route saved in localStorage. If so, it will be judged and logically processed. After the processing is completed, Clear the saved routes to prevent entering an infinite loop.
After entering the first level of judgment, you need to judge again whether it is a page refresh event
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) { //动态路由页面的刷新事件
      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))//取到浏览器出现网址的最后"/"出现的后边的字符
Copy after login

ps:At first I thought that the route jump 404 cannot be matched and must be intercepted Process it here, but later found that it is not necessary at all. Just add the following two paragraphs when registering the route:

export const constantRouterMap = [{
    path: '/',
    component: HelloWorld
  }, 
  {//404
    path: '/404',
    component: ErrPage
  },
  { //重定向到404
      path: '*', redirect: '/404' }
]
Copy after login

The overall idea is probably like this, mainly using beforeEach to intercept the data storage of localStorage, and it can be completed. , addRoutes dynamically adds the route refresh function without invalidation.
Please correct me for any shortcomings

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

vue router: dynamic route matching dynamic route matching

Use mixin to write plug-ins for self-made vue component communication plug-ins

The above is the detailed content of How does vue solve the problem of refresh failure after addRoutes dynamically adds routes?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!