面试官:vue要做权限管理该怎么做?如果控制到按钮级别的权限怎么做?
vue element admin
一、是什么
权限是对特定资源的访问许可,所谓权限控制,也就是确保用户只能访问到被分配的资源
而前端权限归根结底是请求的发起权,请求的发起可能有下面两种形式触发
•页面加载触发
•页面上的按钮点击触发
总的来说,所有的请求发起都触发自前端路由或视图
所以我们可以从这两方面入手,对触发权限的源头进行控制,最终要实现的目标是:
•路由方面,用户登录后只能看到自己有权访问的导航菜单,也只能访问自己有权访问的路由地址,否则将跳转4xx提示页
•视图方面,用户只能看到自己有权浏览的内容和有权操作的控件
•最后再加上请求控制作为最后一道防线,路由可能配置失误,按钮可能忘了加权限,这种时候请求控制可以用来兜底,越权请求将在前端被拦截
二、如何做
前端权限控制可以分为四个方面:
•接口权限
•按钮权限
•菜单权限
•路由权限
接口权限
接口权限目前一般采用jwt的形式来验证,没有通过的话一般返回401,跳转到登
录页面重新进行登录
登录完拿到token,将token存起来,通过axios请求进行拦截,每次请求
的时候头部携带token
quest.use(config => {
config.headers['token'] = ('token')
return config
})
sponse.use(res=>{},{response}=>{
if (de===40099|| de===40098) { //token过期或者错误
router.push('/login')
}
})
路由权限控制
方案一
初始化即挂载全部路由,并且在路由上标记相应的权限信息,每次路由跳转前做校验
const routerMap = [
{
path:'/permission',
component: Layout,
redirect:'/permission/index',
alwaysShow:true,// will always show the root menu
meta: {
title:'permission',
icon:'lock',
roles: ['admin','editor'] // you can set roles in root nav
},
children: [{
path:'page',
component: () => import('@/views/permission/page'),
name:'pagePermission',
meta: {
title:'pagePermission',
roles: ['admin'] // or you can only set roles in sub nav
}
}, {
path:'directive',
component: () => import('@/views/permission/directive'),
name:'directivePermission',
meta: {
title:'directivePermission'
// if do not set roles, means: this page does not require permi ssion
}
}]
}]
这种方式存在以下四种缺点:
•加载所有的路由,如果路由很多,而用户并不是所有的路由都有权限访问,对性能会有影响。
•全局路由守卫里,每次路由跳转都要做权限判断。
•菜单信息写死在前端,要改个显示文字或权限信息,需要重新编译
•菜单跟路由耦合在一起,定义路由的时候还有添加菜单显示标题,图标之类的信息,而且路由不一定作为菜单显示,还要多加字段进行标识
方案二
初始化的时候先挂载不需要权限控制的路由,比如登录页,404等错误页。如果用户通过URL进行强制访问,则会直接进入404,相当于从源头上做了控制
登录后,获取用户的权限信息,然后筛选有权限访问的路由,在全局路由守卫里进行调用addRoutes添加路由
import router from './router'
import store from './store'
import { Message } from 'element-ui'
import NProgress from 'nprogress'// progress bar
import 'nprogress/nprogress.css'// progress bar style
import { getToken } from '@/utils/auth'// getToken from figure({ showSpinner:false })// NProgress Configuration // permission judge function
function hasPermission(roles, permissionRoles) {
if (roles.indexOf('admin') >=0) return true// admin permission pass ed directly
if (!permissionRoles) return true
return roles.some(role => permissionRoles.indexOf(role) >=0)
}
const whiteList = ['/login','/authredirect']// no redirect whitelist router.beforeEach((to, from, next) => {
NProgress.start() // start progress bar
if (getToken()) { // determine if there has token
/* has token*/
if (to.path==='/login') {
next({ path:'/' })
NProgress.done() // if current page is dashboard will not trigger afterEach hook, so manually handle it
} else {
if (les.length===0) { // 判断当前用户是否已拉取完user_info信息
store.dispatch('GetUserInfo').then(res => { // 拉取user_info const roles = les// note: roles must be a array! such as: ['editor','develop']
store.dispatch('GenerateRoutes', { roles }).then(() => { // 根据roles权限生成可访问的路由表
router.s.addRouters) // 动态添加可访问路由表
next({ ...to,replace:true }) // hack方法确保addRoutes已完成 ,set the replace: true so the navigation will not leave a history record
})
}).catch((err) => {
store.dispatch('FedLogOut').then(() => {
<(err ||'Verification failed, please login aga in')
next({ path:'/' })
})
})
} else {
// 没有动态改变权限的需求可直接next() 删除下方权限判断↓
if (s.roles, les)) {
next()//
} else {
next({ path:'/401',replace:true,query: { noGoBack:true }})
}
// 可删↑
}
}
} else {
/* has no token*/
if (whiteList.indexOf(to.path) !==-1) { // 在免登录白名单,直接进入
next()
} else {
next('/login') // 否则全部重定向到登录页
NProgress.done() // if current page is login will not trigger aft erEach hook, so manually handle it
}
}
})
router.afterEach(() => {
NProgress.done() // finish progress bar
})
按需挂载,路由就需要知道用户的路由权限,也就是在用户登录进来的时候就要知道当前用户拥有哪些路由权限
这种方式也存在了以下的缺点:
•全局路由守卫里,每次路由跳转都要做判断
•菜单信息写死在前端,要改个显示文字或权限信息,需要重新编译
•菜单跟路由耦合在一起,定义路由的时候还有添加菜单显示标题,图标之类的信息,而且路由不一定作为菜单显示,还要多加字段进行标识
菜单权限
菜单权限可以理解成将页面与理由进行解耦
方案一
菜单与路由分离,菜单由后端返回
前端定义路由信息
{
name:"login",
path:"/login",
component: () => import("@/pages/Login.vue")
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论