iis服务器助手广告广告
返回顶部
首页 > 资讯 > 精选 >vue中怎么根据用户权限动态添加路由
  • 292
分享到

vue中怎么根据用户权限动态添加路由

2023-06-25 13:06:29 292人浏览 独家记忆
摘要

这篇文章主要介绍“Vue中怎么根据用户权限动态添加路由”,在日常操作中,相信很多人在vue中怎么根据用户权限动态添加路由问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”vue中怎么根据用户权限动态添加路由”的疑

这篇文章主要介绍“Vue中怎么根据用户权限动态添加路由”,在日常操作中,相信很多人在vue中怎么根据用户权限动态添加路由问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”vue中怎么根据用户权限动态添加路由”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

知识点

路由守卫(使用了前置守卫):根据用户角色判断要添加的路由
vuex:保存动态添加的路由

难点

每次路由发生变化时都需要调用一次路由守卫,并且store中的数据会在每次刷新的时候清空,因此需要判断store中是否有添加的动态路由。
(若没有判断 则会一直添加 导致内存溢出)

vue中怎么根据用户权限动态添加路由

根据角色判断路由
过滤动态路由 判断每条路由角色是否与登录传入的角色一致

vue中怎么根据用户权限动态添加路由

<template>  <div>    <el-menu      :default-active="$route.path"      class="el-menu-vertical-demo menu_wrap"      background-color="#324057"      text-color="white"      active-text-color="#20a0ff"      :collapse="isCollapse"      unique-opened      router    >      <el-submenu        v-for="item in $store.state.Routers"        :key="item.path"        :index="item.path"        v-if="!item.hidden"      >        <template slot="title" >          <i class="el-icon-location"></i>          <span>{{ item.meta.title }}</span>        </template>        <div v-for="chi in item.children" :key="chi.name">          <el-menu-item v-if="!chi.hidden" :index="item.path + '/' + chi.path">            <i class="el-icon-location"></i>{{ chi.meta.title }}          </el-menu-item>        </div>      </el-submenu>    </el-menu>  </div></template><script>export default {  name: "MenuList",  data() {    return {      isCollapse: false,    };  },  created() {    this.$bus.$on("getColl", (data) => {      this.isCollapse = data;    });  },  methods: {  }};</script><style scoped>.menu_wrap {  height: 100vh;}.el-menu-vertical-demo:not(.el-menu--collapse) {  width: 200px;  height: 100vh;}</style>
import Vue from 'vue'import VueRouter from 'vue-router'import store from '../store/index'Vue.use(VueRouter)const originalPush = VueRouter.prototype.pushVueRouter.prototype.push = function push(location) {  return originalPush.call(this, location).catch(err => err)}export const routes = [  {    path: '/home',    name: 'First',    component: () => import('../views/Index.vue'),    meta: { title: 'Home'},    children: [      {        path: 'index',        name: 'Home',        component: () => import('../views/Home'),        meta: { title: 'Home', roles: ['Customer'] }      }    ]  },  {    path: '/index',    name: 'NavigationOne',    component: () => import('../views/Index.vue'),    meta: { title: '导航一'},    children: [      {        path: 'personnel',        name: 'Personnel ',        component: () => import('../views/One/Personnel.vue'),        meta: { title: 'Personnel', roles: ['Customer'] }      },      {        path: 'account',        name: 'Account',        component: () => import('../views/One/Account.vue'),        meta: { title: 'Account', roles: ['Customer'] }      },      {        path: 'psw',        name: 'psw',        component: () => import('../views/One/PassWord.vue'),        meta: { title: 'psw', roles: ['Customer'] }      }    ]  },  {    path: '/card',    name: 'NavigationTwo',    component: () => import('../views/Index.vue'),    meta: { title: '导航二'},    children: [      {        path: 'activity',        name: 'Activity ',        component: () => import('../views/Three/Activity.vue'),        meta: { title: 'Activity', roles: ['Customer'] }      },      {        path: 'Social',        name: 'Social',        component: () => import('../views/Three/Social.vue'),        meta: { title: 'Social', roles: ['Customer'] }      },      {        path: 'content',        name: 'Content',        component: () => import('../views/Three/Content.vue'),        meta: { title: 'Content', roles: ['Customer'] }      }    ]  },  {    path: '/two',    name: 'NavigationThree',    component: () => import('../views/Index.vue'),    meta: { title: '导航三'},    children: [      {        path: 'index',        name: 'Two ',        component: () => import('../views/Two'),        meta: { title: 'Two', roles: ['Customer'] }      }]  },  {    path: '/404',    name: 'Error',    hidden: true,    meta: { title: 'error'},    component: () => import('../views/Error')  }]export const asyncRouter = [  // Agent3 Staff2  {    path: '/agent',    component: () => import('../views/Index.vue'),    name: 'Agent',    meta: { title: 'Agent', roles: ['Agent','Staff']},    children: [      {        path: 'one',        name: 'agentOne',        component: () => import('@/views/agent/One'),        meta: { title: 'agentOne', roles: ['Agent','Staff']  }      },      {        path: 'two',        name: 'agentTwo',        component: () => import('@/views/agent/Two'),        meta: { title: 'agentTwo', roles: ['Agent']  }      },      {        path: 'three',        name: 'agentThree',        component: () => import('@/views/agent/Three'),        meta: { title: 'agentThree', roles: ['Agent','Staff']  }      }    ]  },  // Staff3  {    path: '/staff',    component: () => import('../views/Index.vue'),    name: 'Staff',    meta: { title: 'Staff', roles: ['Staff']},    children: [      {        path: 'one',        name: 'StaffOne',        component: () => import('@/views/Staff/One'),        meta: { title: 'StaffOne', roles: ['Staff']  }      },      {        path: 'two',        name: 'StaffTwo',        component: () => import('@/views/Staff/Two'),        meta: { title: 'StaffTwo', roles: ['Staff']  }      },      {        path: 'three',        name: 'StaffThree',        component: () => import('@/views/Staff/Three'),        meta: { title: 'StaffThree', roles: ['Staff']  }      }    ]  },  { path: '*', redirect: '/404', hidden: true }]const router = new VueRouter({  routes})router.beforeEach((to, from, next) =>{  let roles = ['Staff']  if(store.state.Routers.length) {    console.log('yes')    next()  } else {    console.log('not')    store.dispatch('asyncGetRouter', {roles})    .then(res =>{      router.addRoutes(store.state.addRouters)    })    next({...to})    // next()与next({ ...to })的区别:next() 放行   next('/XXX') 无限拦截  }})export default router
import Vue from 'vue'import Vuex from 'vuex'import modules from './module'import router, {routes, asyncRouter} from '../router'function hasPermission(route, roles) {  if(route.meta && route.meta.roles) {    return roles.some(role =>route.meta.roles.indexOf(role) >= 0)  } else {    return true  }  }function filterAsyncRouter(asyncRouter, roles) {  let filterRouter = asyncRouter.filter(route =>{    if(hasPermission(route, roles)) {      if(route.children && route.children.length) {          route.children = filterAsyncRouter(route.children, roles)      }      return true     }    return false  })  return filterRouter}Vue.use(Vuex)export default new Vuex.Store({  state: {    addRouters:  [],    Routers: []  },  mutations: {    getRouter(state, paload) {      // console.log(paload)      state.Routers = routes.concat(paload)      state.addRouters = paload      // router.addRoutes(paload)    }  },  actions: {    asyncGetRouter({ commit }, data) {      const { roles } = data      return new Promise(resolve =>{        let addAsyncRouters = filterAsyncRouter(asyncRouter, roles)        commit('getRouter', addAsyncRouters)        resolve()      })    }  }})

到此,关于“vue中怎么根据用户权限动态添加路由”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!

--结束END--

本文标题: vue中怎么根据用户权限动态添加路由

本文链接: https://www.lsjlt.com/news/304927.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
  • C++ 生态系统中流行库和框架的贡献指南
    作为 c++++ 开发人员,通过遵循以下步骤即可为流行库和框架做出贡献:选择一个项目并熟悉其代码库。在 issue 跟踪器中寻找适合初学者的问题。创建一个新分支,实现修复并添加测试。提交...
    99+
    2024-05-14
    框架 c++ 流行库 git
  • C++ 生态系统中流行库和框架的社区支持情况
    c++++生态系统中流行库和框架的社区支持情况:boost:活跃的社区提供广泛的文档、教程和讨论区,确保持续的维护和更新。qt:庞大的社区提供丰富的文档、示例和论坛,积极参与开发和维护。...
    99+
    2024-05-14
    生态系统 社区支持 c++ overflow 标准库
  • c++中if elseif使用规则
    c++ 中 if-else if 语句的使用规则为:语法:if (条件1) { // 执行代码块 1} else if (条件 2) { // 执行代码块 2}// ...else ...
    99+
    2024-05-14
    c++
  • c++中的继承怎么写
    继承是一种允许类从现有类派生并访问其成员的强大机制。在 c++ 中,继承类型包括:单继承:一个子类从一个基类继承。多继承:一个子类从多个基类继承。层次继承:多个子类从同一个基类继承。多层...
    99+
    2024-05-14
    c++
  • c++中如何使用类和对象掌握目标
    在 c++ 中创建类和对象:使用 class 关键字定义类,包含数据成员和方法。使用对象名称和类名称创建对象。访问权限包括:公有、受保护和私有。数据成员是类的变量,每个对象拥有自己的副本...
    99+
    2024-05-14
    c++
  • c++中优先级是什么意思
    c++ 中的优先级规则:优先级高的操作符先执行,相同优先级的从左到右执行,括号可改变执行顺序。操作符优先级表包含从最高到最低的优先级列表,其中赋值运算符具有最低优先级。通过了解优先级,可...
    99+
    2024-05-14
    c++
  • c++中a+是什么意思
    c++ 中的 a+ 运算符表示自增运算符,用于将变量递增 1 并将结果存储在同一变量中。语法为 a++,用法包括循环和计数器。它可与后置递增运算符 ++a 交换使用,后者在表达式求值后递...
    99+
    2024-05-14
    c++
  • c++中a.b什么意思
    c++kquote>“a.b”表示对象“a”的成员“b”,用于访问对象成员,可用“对象名.成员名”的语法。它还可以用于访问嵌套成员,如“对象名.嵌套成员名.成员名”的语法。 c++...
    99+
    2024-05-14
    c++
  • C++ 并发编程库的优缺点
    c++++ 提供了多种并发编程库,满足不同场景下的需求。线程库 (std::thread) 易于使用但开销大;异步库 (std::async) 可异步执行任务,但 api 复杂;协程库 ...
    99+
    2024-05-14
    c++ 并发编程
  • 如何在 Golang 中备份数据库?
    在 golang 中备份数据库对于保护数据至关重要。可以使用标准库中的 database/sql 包,或第三方包如 github.com/go-sql-driver/mysql。具体步骤...
    99+
    2024-05-14
    golang 数据库备份 mysql git 标准库
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作