Problem DescriptionYesterday, when I was working on the function of dynamically adding permission pages to routes in the Vue backend management system, I encountered a problem: the dynamically added routing page had a 404 error when the page was refreshed. ScenarioThe permission control of the backend management system is achieved by defining the permission code on the frontend page, saving the code to the backend colleagues and configuring it in a table. Then, the permission code list returned by the backend is filtered and matched with the code menu list configured on the frontend page. Pages with equal codes are permissioned pages, and then dynamically added to the route through router.addRoute(). Only routes with permission can be accessed, otherwise it will prompt that there is no permission. Fixed routes are placed in the new Router at the beginning, such as the login page login Interface returnFront-end menu definitionMethods in vuex ProblemsAfter logging in, call the method in vuex to complete the acquisition of permission code, dynamically filter the permission routing page operation, and then add the permission menu to the route through router.addRoute(), enter the dynamically added routing page, and refresh the page to display 404 Cause AnalysisWhen the page is refreshed, the routes are reinitialized. The dynamically added routes no longer exist. Only some fixed routes (such as the login page) are still there, so a 404 error occurs. Solution The data stored in the VUEX store will be cleared when the page is refreshed. Implement code route/index.js to add logic judgment to the navigation guard———router.js————- const constantRoutes = [ { path: '/', redirect: '/login' }, { path: '/login', name: 'login', meta: { auth: false }, component: () => import('@/views/login') }, { path: '/layout', name: 'layout', meta: { auth: true }, component: () => import('@/views/layout/index'), children: [ { path: '/index', name: 'index', component: () => import('@/views/home') } ] }, { path: '*', component: () => import('@/views/error/404') } ] Vue.use(VueRouter) const createRouter = () => new VueRouter({ routes: constantRoutes }) export function resetRouter() { const newRouter = createRouter() router.matcher = newRouter.matcher // reset router } const router = createRouter() //Reset the permission page dynamic routing after the page is refreshed to prevent dynamic routing 404 problems const reSetPermissionList = to => { return new Promise((resolve, reject) => { if (to.path !== '/login' && store.state.permission.permissionList.length === 0) { store .dispatch('permission/getPermissionList') .then(() => { resolve('permCode') }) .catch(error => { resolve('permCode') }) } else { resolve() } }) } router.beforeEach((to, from, next) => { const accessToken = localStorage.getItem('accessToken') if (_.isEmpty(accessToken)) {//Are you logged in? Go to the login page next({ path: '/login', query: { redirect: to.fullPath } }) } else { //Logged in user enters the page if (to.path === '/login') { next({ path: '/index' }) } else { reSetPermissionList(to).then(data => { data === 'permCode' ? next({ path: to.path, query: to.query }) : next() }) } } }) SummarizeIt mainly determines whether the data in VUEX exists in the global navigation and whether the page is refreshed. If so, it goes through the permission routing matching method again. The above is the detailed content of the reasons and solutions for the failure of the dynamically added routing page of Vue to refresh. For more information about Vue routing page refresh, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to deploy tomcat in batches with ansible
>>: Detailed discussion of the character order of mysql order by in (recommended)
Mysql limit paging statement usage Compared with ...
Table of contents Mixin Mixin Note (duplicate nam...
The concept of mysql stored procedure: A set of S...
The following questions are all based on the Inno...
Table of contents Standards for smooth animation ...
This article example shares the specific code of ...
Table of contents Normal loading Lazy Loading Pre...
WeChat applet trajectory playback mainly uses pol...
Docker installation Use the official installation...
WeChat Mini Program - QR Code Generator Download:...
I recently deployed Django and didn't want to...
background: Since the company's projects seem...
Error description When we install Docker Desktop,...
How to add a loading animation every time I scrol...
GitHub address: https://github.com/dmhsq/dmhsq-my...