003-pro ant design 前端权限处理-支持URL参数的页面
前天需要增加MD5引用
https://www.bootcdn.cn/blueimp-md5/
1、修改权限文件(CheckPermissions.js)使用自定义权限
2、配置异常页面
2.1、创建异常页面
/src/pages/Exception
import React from 'react';
import { formatMessage } from 'umi/locale';
import Link from 'umi/link';
import Exception from '@/components/Exception'; const Exception400 = () => (
<Exception
type="400"
desc={formatMessage({ id: 'app.exception.description.400' })}
linkElement={Link}
backText={formatMessage({ id: 'app.exception.back' })}
/>
); export default Exception400;
2.2、增加400页面配置项
/src/components/Exception/typeConfig.js
const config = {
400: {
img: 'https://gw.alipayobjects.com/zos/rmsportal/wZcnGqRDyhPOEYFcZDnb.svg',
title: '400',
desc: '抱歉,你无权访问该页面或该页面不存在',
},
//......
}
2.3、添加中英文菜单对照
/src/locales/zh-CN.js
'app.exception.description.400': '抱歉,你无权限访问该页面或该页面不存在',
2.4、将400页面引入(BasicLayout.js)
/src/layouts/BasicLayout.js
import Exception400 from '../pages/Exception/400';
3、权限菜单控制开发
3.1、获取远端服务器授权菜单
/src/layouts/BasicLayout.js
state中增加menuPermissionData参数
state = {
rendering: true,
isMobile: false,
menuData: this.getMenuData(),
menuPermissionData: '',
}
在componentWillMount中增加后端请求并赋值menuPermissionData
dispatch({
type: 'common/getMenuPermissionData',
callback: res => {
console.log(res);
if (res && res.code == ) {
this.setState({
menuPermissionData: JSON.stringify(res.data),
});
}
},
});
对于model,service请求需要自行开发
返回值格式:
{
"code": 20000,
"msg": "操作成功",
"data": [
{
"menuList": [
{
"menuList": [],
"url": "/data/#/menu1/son",
},
{
"menuList": [
{
"menuList": [],
"url": "/data/#/menu2/:id",
},
{
"menuList": [],
"url": "/data/#/menu3/:id/add",
}
],
"id": 399,
"url": "/data/#/menu4",
},
],
"id": 384,
"url": "",
}
]
}
后端接口可以返回:/data/#/menu3/:id/add菜单
针对
/data/#/menu3/4/add
/data/#/menu3/5/add
可以通过
3.2、控制逻辑,增加两个方法
validMatchUrl =(menuPermissionDataStr, currentHashUrl) =>{
// currentHashUrl = '/operate/skuFormField/6';
let fullMatch = [];//完全匹配地址
let ruleMatch = [];//规则匹配地址
const regRule2 = /\//g;
let menuPermissionData =JSON.parse(menuPermissionDataStr);
const menuPermissionDataMd5 = localStorage.getItem('menuPermissionData');
const currentMenuMd5 = md5(JSON.stringify(menuPermissionData));
if (menuPermissionDataMd5 && menuPermissionDataMd5 === currentMenuMd5) {
console.log('----cache-----',menuPermissionData);
fullMatch = JSON.parse(localStorage.getItem('menuPermissionData_fullMatch'));
ruleMatch = JSON.parse(localStorage.getItem('menuPermissionData_ruleMatch'));
} else {
console.log('----no cache-----',menuPermissionData);
fullMatch.push("/");
fullMatch.push("/index");
menuPermissionData.map(t => {
this.iterMenuList(fullMatch,ruleMatch,t.menuList);
});
localStorage.setItem('menuPermissionData_fullMatch', JSON.stringify(fullMatch));
localStorage.setItem('menuPermissionData_ruleMatch', JSON.stringify(ruleMatch));
localStorage.setItem('menuPermissionData', currentMenuMd5);
}
//全匹配地址
console.log('using fullMatch route start');
if (fullMatch.indexOf(currentHashUrl) != -1) {
//匹配成功
console.log('using fullMatch route result:true');
console.log('using fullMatch route end');
return true;
}
console.log('using fullMatch route end');
//规则匹配地址
// 原始URL分解
//路由个数
console.log('using ruleMatch route start');
const routkeyNum = currentHashUrl.match(regRule2).length;
const matchRouteObj=ruleMatch.find(e => e && e.key === routkeyNum);
if(matchRouteObj && matchRouteObj.value && matchRouteObj.value.length>0){
const tmpRuleMatchArr = matchRouteObj.value;
for (let i = 0; i < tmpRuleMatchArr.length; i++) {
const f = tmpRuleMatchArr[i];
let tmpFlag = true;
for (let i = 0; i < f.length; i++) {
if (f[i] === '/:') {
tmpFlag = true;
continue;
} else if (f[i] !== ('/' + currentHashUrl.split('/').filter(d => d && d.length > 0)[i])) {
tmpFlag = false;
break;
}
}
if (tmpFlag){
console.log('using ruleMatch route result:true');
console.log('using ruleMatch route end');
return true;
}
}
}
console.log('using ruleMatch route result:false');
console.log('using ruleMatch route end');
return false;
} iterMenuList=(fullMatch,ruleMatch,menuList)=>{
const regRule2 = /\//g;
if(menuList && menuList.length>0){
menuList.map(a => {
const url = a.url.indexOf('#') != -1 ? a.url.split('#')[1] : a.url;
if (url.indexOf('/:') == -1) {
fullMatch.push(url);//完全匹配地址
} else {
// 获取map是否有对应的路由个数
const routkey = url.match(regRule2).length;
const tmpMapValue = ruleMatch.find(c => {
return c && c.key === routkey;
});
//构建当前URL
const tmpRuleRuleArr = url.split('/').filter(c => {
return c && c.length > 0;
});
const tmpRuleRuleArr2 = tmpRuleRuleArr.map(b => {
if (b && b.length > 0) {
return b = b.startsWith(':') ? '/:' : ('/' + b);
}
});
if (tmpMapValue && tmpMapValue.value && tmpMapValue.value.length > 0) {
tmpMapValue.value.push(tmpRuleRuleArr2);
} else {
// 没有的话添加
const a = [];
a.push(tmpRuleRuleArr2);
ruleMatch.push({ key: routkey, value: a });
}
} this.iterMenuList(fullMatch,ruleMatch,a.menuList);
});
}else{
return ;
}
}
3.3、render增加权限控制
数据引入
const { isMobile, menuData, menuPermissionData, openLocalConfig, isShowChildren } = this.state;
在Content中增加
<Content style={this.getContentStyle()}>
<Authorized
authority={routerConfig && routerConfig.authority}
noMatch={<Exception403 />}
>
{
(menuPermissionData != '') ?
(
this.validMatchUrl(menuPermissionData,location.hash.split('?')[0].replace(new RegExp('#', 'g'), ''))
? children:<Exception400 />
)
:'' }
</Authorized>
</Content>
003-pro ant design 前端权限处理-支持URL参数的页面的更多相关文章
- 使用selenium操作ant design前端的页面,感觉页面没加载完
因需要收集页面数据,遂准备使用selenium爬取瓦斯阅读页面, 瓦斯网站使用的是ant design,元素定位非常困难,页面元素都没有ID,现在还只是能做到操作登录,不能自动打开订阅,查询某公众号, ...
- ant design pro (四)新增页面
一.概述 参看地址:https://pro.ant.design/docs/new-page-cn 这里的『页面』指配置了路由,能够通过链接直接访问的模块,要新建一个页面,通常只需要在脚手架的基础上进 ...
- ant design pro (十六)advanced 权限管理
一.概述 原文地址:https://pro.ant.design/docs/authority-management-cn 权限控制是中后台系统中常见的需求之一,你可以利用我们提供的权限控制组件,实现 ...
- Ant Design Pro 鉴权/ 权限管理
https://pro.ant.design/docs/authority-management-cn ant-design-pro 1.0.0 V4 最近需要项目需要用扫码登录,因此就使用antd ...
- ant design pro (十三)advanced 错误处理
一.概述 原文地址:https://pro.ant.design/docs/error-cn 二.详细 2.1.页面级报错 2.1.1.应用场景 路由直接引导到报错页面,比如你输入的网址没有匹配到任何 ...
- ant design pro (十二)advanced UI 测试
一.概述 原文地址:https://pro.ant.design/docs/ui-test-cn UI 测试是项目研发流程中的重要一环,有效的测试用例可以梳理业务需求,保证研发的质量和进度,让工程师可 ...
- ant design pro (十一)advanced Mock 和联调
一.概述 原文地址:https://pro.ant.design/docs/mock-api-cn Mock 数据是前端开发过程中必不可少的一环,是分离前后端开发的关键链路.通过预先跟服务器端约定好的 ...
- ant design pro (八)构建和发布
一.概述 原文地址:https://pro.ant.design/docs/deploy-cn 二.详细 2.1.构建 当项目开发完毕,只需要运行一行命令就可以打包你的应用: npm run buil ...
- Ant Design Pro (中后台系统)教程
一.概念:https://pro.ant.design/docs/getting-started-cn(官方网站) 1.Ant Design Pro 是什么: https://www.cnblogs ...
随机推荐
- Mybatis常见面试题(转)
Mybatis技术内幕系列博客,从原理和源码角度,介绍了其内部实现细节,无论是写的好与不好,我确实是用心写了,由于并不是介绍如何使用Mybatis的文章,所以,一些参数使用细节略掉了,我们的目标是介绍 ...
- Mac OSX安装启动 zookeeper
安装 zookeeper支持brew安装 ➜ ~ brew info zookeeper zookeeper: stable (bottled), HEAD Centralized server fo ...
- iOS开发-- Xcode 6单元测试
占坑 http://m.oschina.net/blog/377800 http://www.cnblogs.com/sunshine-anycall/p/4155649.html http://ob ...
- 51 IP核查询
康芯的IP核 Oregano systems 公司的MC8051 IP CoreSynthesizeable VHDL Microcontroller IP-Core User Guide这个里面51 ...
- Qt编写echart仪表盘JS交互程序支持webkit和webengine(开源)
Echart是百度研发团队开发的一款报表视图JS插件,功能十分强大,是本人用过的国产作品中最牛逼的,记得四五年前就在qt中使用过,当时用的浏览器控件是webkit,由于5.6以后的版本不再支持webk ...
- shell利用数组分割组合字符串
#!/bin/bash #接收脚本参数如[sh a.txt .0_3_4_f_u_c_k_8080] a=$ #把参数分割成数组 arr=(${a//_/ }) #显示数组长度 #echo ${#ar ...
- Solr-全文检索工具简介
一.Solr的简介 Solr 是Apache下的一个顶级开源项目,采用Java开发,它是基于Lucene的全文搜索服务.Solr可以独立运行在Jetty.Tomcat等这些Servlet容器中.都是W ...
- Redis一次数据丢失
一台Redis服务器,4核,16G内存且没有任何硬件上的问题.持续高压运行了大约3个月,保存了大约14G的数据,设置了比较完备的Save参数.而就是这台主机,在一次重起之后,丢失了大量的数据,14G的 ...
- 【吴恩达课后测验】Course 1 - 神经网络和深度学习 - 第二周测验【中英】
[中英][吴恩达课后测验]Course 1 - 神经网络和深度学习 - 第二周测验 第2周测验 - 神经网络基础 神经元节点计算什么? [ ]神经元节点先计算激活函数,再计算线性函数(z = Wx + ...
- nvidia-smi failed because it couldn't communicate with the nvidia driver
Ubuntu装好CUDA之后过段时间提示NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. NV ...