怎么用vue实现动态路由

1、什么是动态路由

动态路由,动态即不是写死的,是可变的。我们可以根据自己不同的需求加载不同的路由,做到不同的实现及页面的渲染。动态的路由存储可分为两种,一种是将路由存储到前端。另一种则是将路由存储到数据库。动态路由的使用一般结合角色权限控制一起使用。

总结:

1)路由可变,不是写死的,动态加载

2)存储分两种:存前端,存数据库

2、动态路由的好处

使用动态路由可以跟灵活,无需手工维护,我们可以使用一个页面对路由进行维护。如果将路由存储到数据库,还可以增加安全性。

总结:

1)灵活,无需手工维护

2)增加安全性

3、动态路由如何实现

在此以路由存储在数据库为例

流程:一般我们在登录的时候,根据登录用户的角色返回此角色可以访问的页面的路由,前端将路由存储到vuex(vuex存储的数据必须可持久的,不要一刷新页面就不见),我们在路由前置守卫处动态添加拿到的路由,对页面进行渲染。

1)此为我的router目录,index.js对路由添加,守卫拦截等处理。static-route.js为前端定义的静态路由,不需要动态加载的,如登陆页面,忘记密码页面,404页面等。

怎么用vue实现动态路由

怎么用vue实现动态路由

index.js

import Vue from 'vue'import $cookies from 'vue-cookies'import VueRouter from 'vue-router'import store from '../store'import staticRoute from './static-route.js'Vue.use(VueRouter)const router = new VueRouter({	mode: 'history',	base: process.env.BASE_URL,	routes: staticRoute //staticRoute为静态路由,不需动态添加})let isToken = truerouter.beforeEach(async (to, from, next) => {	//定义isToken为true和vuex不为空时添加路由	if (isToken && store.state.routers.routers.length != 0) {		//从vuex中获取动态路由		const accessRouteses = await store.state.routers.routers;		//动态路由循环解析和添加		accessRouteses.forEach(v => {			v.children = routerChildren(v.children);			v.component = routerCom(v.component);			router.addRoute(v); //添加		})		isToken = false //将isToken赋为 false ,否则会一直循环,崩溃		next({			...to, // next({ ...to })的目的,是保证路由添加完了再进入页面 (可以理解为重进一次)			replace: true, // 重进一次, 不保留重复历史		})	} else {		if (to.name == null) {			next("/404")		} else {			if (to.meta.title) { //判断是否有标题				document.title = to.meta.title //给相应页面添加标题			}			next()		}	}})function routerCom(path) { //对路由的component解析	return (resolve) => require([`@/views/${path}`], resolve);}function routerChildren(children) { //对子路由的component解析	children.forEach(v => {		v.component = routerCom(v.component);		if (v.children != undefined) {			v.children = routerChildren(v.children)		}	})	return children}export default router

2)登陆成功后将获取到的动态路由存储到vuex

怎么用vue实现动态路由

vuex—>index.js

import Vue from 'vue'import Vuex from 'vuex'//数据持久化import createPersistedState from "vuex-persistedstate";Vue.use(Vuex)const routers = {  namespaced: true,  state: () => ({    routers:"",  }),  mutations: {    routers(state, newsdata) {      state.routers = newsdata    },  },  actions: {    routers(context) {      context.commit('routers')    },  },  getters: {    routers(state) {      console.log("getters", state)      return state.routers    },      }}const store = new Vuex.Store({  modules: {    routers: routers,  },    // 数据持久化  plugins: [createPersistedState({    //key是存储数据的键名    key: 'routersData',    //paths是存储state中的那些数据,如果是模块下具体的数据需要加上模块名称,如user.token      paths: ["routers.routers"]  })]})export default store

我的动态路由模板

//动态路由const dynamicRoute = [{  "path": "/main",  "name": "main",  "redirect": "/main/index",  "component": "main/main.vue",  "children": [{      "path": "index",      "name": "index",      "component": "index/index.vue",      "meta": {        "name": "index",        "title": "首页",        "icon": "el-icon-location",        "menu":true //true为菜单栏      }    },    {      "path": "Configuration",      "name": "Configuration",      "redirect": "Configuration/route",      "component": "Configuration/index.vue",      "roles": ['developer', "admin"], //  developer、admin角色的用户才能访问该页面      "meta": {        "title": "配置",        "icon": "el-icon-location",        "menu":true      },      "children": [{          "path": "route",          "name": "route",          "component": "Configuration/route/index.vue",          "meta": {            "title": "菜单",            "icon": "",            "menu":true          },        }, {          "path": "user",          "name": "user",          "component": "Configuration/user/index.vue",          "meta": {            "title": "用户管理",            "icon": "el-icon-location",            "menu":true          },        },        {          "path": "admin",          "name": "admin",          "component": "Configuration/admin/index.vue",          "meta": {            "title": "管理员管理",            "icon": "",            "menu":true          },        },                {          "path": "userEdit",          "name": "userEdit",          "component": "Configuration/user/user-Edit.vue",          "meta": {            "title": "编辑用户",            "icon": "",            "menu":false          },        },        ]    },    {      "path": "check",      "name": "check",      "redirect": "check/user",      "component": "check/index.vue",      "roles": ['developer', "admin", "check"], //  developer、admin角色的用户才能访问该页面      "meta": {        "title": "审核",        "icon": "el-icon-location",        "menu":true      },      "children": [{          "path": "user",          "name": "checkUser",          "component": "check/check-user/index.vue",          "meta": {            "title": "用户实名审核",            "icon": "el-icon-location",            "menu":true          }        },        {          "path": "enterprise",          "name": "checkEnterprise",          "component": "check/check-enterprise/index.vue",          "meta": {            "title": "企业认证审核",            "icon": "el-icon-location",            "menu":true          },        },        {          "path": "checkNormImage",          "name": "checkNormImage",          "component": "check/check-norm-image/index.vue",          "meta": {            "title": "标准照认证审核",            "icon": "el-icon-location",            "menu":true          },        },        {          "path": "checkHiringJobs",          "name": "checkHiringJobs",          "component": "check/check-hiring-Jobs/index.vue",          "meta": {            "title": "求职、招聘认证审核",            "icon": "el-icon-location",            "menu":true          },        }      ]    }  ]}, ]export default dynamicRoute

路由管理界面(可能有不完善的地方)

怎么用vue实现动态路由

讲一讲遇到的坑及注意点

1)“component”: “check/check-norm-image/index.vue”, 用字符串再在解析,不要像静态路由一样。否则名列前茅次进去可以,刷新就变空白

2)此处为重要的一点,直接用next()不行

next({      ...to, // next({ ...to })的目的,是保证路由添加完了再进入页面 (可以理解为重进一次)      replace: true, // 重进一次, 不保留重复历史    })

3)由于添加完路由还会重复执行一遍路由守卫,所有必须确保不要一直死循环添加路由。否则直接崩溃。这里我用的是isToken变量确保不循环。

关于“怎么用vue实现动态路由”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“怎么用vue实现动态路由”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注亿速云行业资讯频道。

文章标题:怎么用vue实现动态路由,发布者:亿速云,转载请注明出处:https://worktile.com/kb/p/25725

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
亿速云的头像亿速云
上一篇 2022年9月15日 下午11:43
下一篇 2022年9月15日 下午11:44

相关推荐

  • 2024年9款优质CRM系统全方位解析

    文章介绍的工具有:纷享销客、Zoho CRM、八百客、红圈通、简道云、简信CRM、Salesforce、HubSpot CRM、Apptivo。 在选择合适的CRM系统时,许多企业面临着功能繁多、选择困难的痛点。对于中小企业来说,找到一个既能提高客户关系管理效率,又能适应业务扩展的CRM系统尤为重要…

    2024年7月25日
    1600
  • 数据库权限关系图表是什么

    数据库权限关系图表是一种以图表形式展示数据库权限分配和管理的工具。它可以有效地帮助我们理解和管理数据库中的各种权限关系。数据库权限关系图表主要包含以下几个部分:数据对象、用户(或用户组)、权限类型、权限级别、权限状态等。其中,数据对象是权限关系图表中的核心元素,它代表了数据库中的各种数据资源,如表、…

    2024年7月22日
    200
  • 诚信数据库是什么意思

    诚信数据库是一种收集、存储和管理个人或组织诚信信息的系统。它是一种用于评估和管理个人或组织行为的工具,通常由政府、商业组织或者非营利组织进行运营。诚信数据库的主要功能包括:1、评估个人或组织的诚信状况;2、提供决策支持;3、预防和控制风险;4、促进社会信用体系建设。 在这四大功能中,评估个人或组织的…

    2024年7月22日
    400
  • 数据库期末关系代数是什么

    关系代数是一种对关系进行操作的代数系统,是关系模型的数学基础,主要用于从关系数据库中检索数据。其操作包括选择、投影、并集、差集、笛卡尔积、连接、除法等。其中,选择操作是对关系中的元组进行筛选,只保留满足某一条件的元组;投影操作则是从关系中选择出一部分属性构造一个新的关系。 一、选择操作 选择操作是关…

    2024年7月22日
    700
  • mysql建立数据库用什么命令

    在MySQL中,我们使用"CREATE DATABASE"命令来创建数据库。这是一个非常简单且基础的命令,其语法为:CREATE DATABASE 数据库名。在这个命令中,“CREATE DATABASE”是固定的,而“数据库名”则是你要创建的数据库的名称,可以自己设定。例如,如…

    2024年7月22日
    500
注册PingCode 在线客服
站长微信
站长微信
电话联系

400-800-1024

工作日9:30-21:00在线

分享本页
返回顶部