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

Creation process of dynamic routing for permission control in Vue (picture and text)

不言
Release: 2018-08-03 10:01:08
Original
2906 people have browsed it

This article introduces you to the article content about the creation process (pictures and texts) of permission control dynamic routing in vue. It has a good reference value and I hope it can help friends in need.

Vue will add the router.addRoutes function in later versions so that routing tables can be created. First go to the flow chart

Creation process of dynamic routing for permission control in Vue (picture and text)

The key points of the process : Depends on whether there is dynamic routing when jumping to the page
Process explanation:

  1. When entering the web page, first create a part of the static routing table. This static routing table contains the login page , this is to ensure that there is a page that can be accessed when entering the URL

  2. After logging in, the list of access permissions of the logged-in user is pulled from the server and saved to sessionstorage

  3. In the router.beforeEach hook function, determine whether there is a dynamic routing table (this function is a function that runs before the route jumps)

  4. In the hook function, determine whether there is a dynamic routing table If there is no dynamic routing table, jump to the page. If not, create a dynamic routing table.

  5. If there is no routing information stored in sessionstorage, jump back to the login page and log in again to obtain it. Routing information

Key explanation:

  1. Pull the role’s routing table from the server, store a total routing table locally, and then pull it from the server Filter the obtained routing table, and finally save the filtered result to sessionstorage

  2. Every time the page jumps, determine whether there is a dynamic routing table, if not, create a new routing table

Source code:

Creation process of dynamic routing for permission control in Vue (picture and text)

Creation process of dynamic routing for permission control in Vue (picture and text)

## Recommended related articles:

What is the difference between vue instructions and $nextTick to operate DOM?

Summary of the method of packaging Vue projects by environment

The above is the detailed content of Creation process of dynamic routing for permission control in Vue (picture and text). 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