最终效果:

首先把 flex_security.swc 放进你项目的lib文件中。
如图:

四种权限控制方式:
1. styleName
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
width="100%" height="100%"
viewSourceURL="http://code.google.com/p/flex-security/source/browse/trunk/flex_security_demo/src/helloworld_by_styleName.mxml"
creationComplete="creationComplete()">
<s:layout>
<s:VerticalLayout horizontalAlign="center"/>
</s:layout>
<fx:Script>
<![CDATA[
import cn.org.rapid_framework.flex_security.SecurityControler;
import mx.collections.ArrayCollection;
import mx.events.FlexEvent;
[Bindable]
private var permissionList : Array = ['cc','sq','lb','ta_input'];
protected function creationComplete():void
{
//启动权限控制
SecurityControler.start(null,'visible');
}
]]>
</fx:Script>
<s:HGroup>
<mx:HBox>
<mx:ComboBox id="permInput" dataProvider="{permissionList}"/>
<mx:Button click="SecurityControler.addPerm(permInput.selectedLabel)" label="添加权限" />
<mx:Button click="SecurityControler.removePerm(permInput.selectedLabel)" label="移除权限" />
<mx:Button click="SecurityControler.addAllPerms(new ArrayCollection(permissionList))" label="添加所有权限" />
<mx:Button click="SecurityControler.removeAllPerms()" label="移除所有权限" />
</mx:HBox>
</s:HGroup>
<s:HGroup>
<!-- 通过styleName增加需要权限保护的组件,没有权限将不能进行相关操作 -->
<mx:HBox>
<!-- id要和声明的对应,enabled表示显现出来,由于受到权限的控制,不可启用-->
<mx:Button label="曹操" id="cc" styleName="security(null,enabled)" />
<!-- 没有声明id,那么在security内要写上 -->
<mx:Button label="孙权" styleName="security(sq)"/>
<!-- 注意这个remove属性,这里声明了remove,那么下面的组件就不受security的控制而会显现出来了 -->
<mx:Button label="刘备" styleName="security(lb,remove)"/>
<!-- 这个算是容易点的写法吧 -->
<mx:TextArea id="ta_input" styleName="security"/>
</mx:HBox>
</s:HGroup>
</s:Application>
参考:helloworld_by_styleName
2. manual
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
width="100%" height="100%"
viewSourceURL="http://code.google.com/p/flex-security/source/browse/trunk/flex_security_demo/src/helloworld_by_manual.mxml"
creationComplete="creationComplete()">
<s:layout>
<s:VerticalLayout horizontalAlign="center"/>
</s:layout>
<fx:Script>
<![CDATA[
import cn.org.rapid_framework.flex_security.SecurityControler;
import mx.collections.ArrayCollection;
import mx.events.FlexEvent;
[Bindable]
private var permissionList : Array = ['cc','sq','lb','ta_input'];
protected function creationComplete():void
{
//启动权限控制
SecurityControler.start(null,'visible');
//增加需要权限保护的UI资源
SecurityControler.addSecurityAction(cc);
SecurityControler.addSecurityAction(sq);
SecurityControler.addSecurityAction(lb);
}
]]>
</fx:Script>
<s:HGroup>
<mx:HBox>
<mx:ComboBox id="permInput" dataProvider="{permissionList}"/>
<mx:Button click="SecurityControler.addPerm(permInput.selectedLabel)" label="添加权限" />
<mx:Button click="SecurityControler.removePerm(permInput.selectedLabel)" label="移除权限" />
<mx:Button click="SecurityControler.addAllPerms(new ArrayCollection(permissionList))" label="添加所有权限" />
<mx:Button click="SecurityControler.removeAllPerms()" label="移除所有权限" />
</mx:HBox>
</s:HGroup>
<s:HGroup>
<!-- 被权限控制的按钮,没有权限将看不见下面的相关按钮 -->
<mx:HBox>
<!-- 看见没有,主要还是id和permissionList声明的对应 -->
<mx:Button label="曹操" id="cc"/>
<mx:Button label="孙权" id="sq"/>
<mx:Button label="刘备" id="lb"/>
<mx:TextArea id="ta_input"/>
</mx:HBox>
</s:HGroup>
</s:Application>
参考:helloworld_by_manual
3. interface
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
width="100%" height="100%"
viewSourceURL="http://code.google.com/p/flex-security/source/browse/trunk/flex_security_demo/src/helloworld_by_interface.mxml"
implements="cn.org.rapid_framework.flex_security.ISecurityMetadata"
creationComplete="creationComplete()">
<s:layout>
<s:VerticalLayout horizontalAlign="center"/>
</s:layout>
<fx:Script>
<![CDATA[
import cn.org.rapid_framework.flex_security.SecurityAction;
import cn.org.rapid_framework.flex_security.SecurityControler;
//注意添加上面的实现---implements="cn.org.rapid_framework.flex_security.ISecurityMetadata"
import cn.org.rapid_framework.flex_security.ISecurityMetadata;
import mx.collections.ArrayCollection;
import mx.events.FlexEvent;
[Bindable]
private var permissionList : Array = ['cc','sq','lb','ta_input'];
protected function creationComplete():void
{
//启动权限控制
SecurityControler.start(null,'visible');
}
//这里返回需要权限保护的UI资源
public function getSecurityActions() : Array {
return [
new SecurityAction(cc),
new SecurityAction(sq),
new SecurityAction(lb)
];
}
]]>
</fx:Script>
<s:HGroup>
<mx:HBox>
<mx:ComboBox id="permInput" dataProvider="{permissionList}"/>
<mx:Button click="SecurityControler.addPerm(permInput.selectedLabel)" label="添加权限" />
<mx:Button click="SecurityControler.removePerm(permInput.selectedLabel)" label="移除权限" />
<mx:Button click="SecurityControler.addAllPerms(new ArrayCollection(permissionList))" label="添加所有权限" />
<mx:Button click="SecurityControler.removeAllPerms()" label="移除所有权限" />
</mx:HBox>
</s:HGroup>
<s:HGroup>
<!-- 被权限控制的按钮,没有权限将看不见下面的相关按钮 -->
<mx:HBox>
<!-- 看见没有,主要还是id和permissionList声明的对应 -->
<mx:Button label="曹操" id="cc"/>
<mx:Button label="孙权" id="sq"/>
<mx:Button label="刘备" id="lb"/>
<mx:TextArea id="ta_input"/>
</mx:HBox>
</s:HGroup>
</s:Application>
参考:helloworld_by_interface
4. annotation
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
width="100%" height="100%"
viewSourceURL="http://code.google.com/p/flex-security/source/browse/trunk/flex_security_demo/src/helloworld_by_annotation.mxml"
creationComplete="creationComplete()">
<s:layout>
<s:VerticalLayout horizontalAlign="center"/>
</s:layout>
<!-- 通过元数据[Protected(id='compId',permission='perm',controlBy='enabled')]确定那个UI组件需要权限保护 -->
<fx:Metadata>
[Protected(id="cc")]
[Protected(id="sq")]
[Protected(id="lb")]
</fx:Metadata>
<fx:Script>
<![CDATA[
import cn.org.rapid_framework.flex_security.SecurityControler;
import mx.collections.ArrayCollection;
import mx.events.FlexEvent;
[Bindable]
private var permissionList : Array = ['cc','sq','lb','ta_input'];
protected function creationComplete():void
{
//启动权限控制
SecurityControler.start(null,'visible');
}
]]>
</fx:Script>
<s:HGroup>
<mx:HBox>
<mx:ComboBox id="permInput" dataProvider="{permissionList}"/>
<mx:Button click="SecurityControler.addPerm(permInput.selectedLabel)" label="添加权限" />
<mx:Button click="SecurityControler.removePerm(permInput.selectedLabel)" label="移除权限" />
<mx:Button click="SecurityControler.addAllPerms(new ArrayCollection(permissionList))" label="添加所有权限" />
<mx:Button click="SecurityControler.removeAllPerms()" label="移除所有权限" />
</mx:HBox>
</s:HGroup>
<s:HGroup>
<mx:HBox>
<mx:Button label="曹操" id="cc"/>
<mx:Button label="孙权" id="sq"/>
<mx:Button label="刘备" id="lb"/>
<mx:TextArea id="ta_input"/>
</mx:HBox>
</s:HGroup>
</s:Application>
参考:helloworld_by_annotation
按实际情况抉择使用

- 大小: 4.8 KB

- 大小: 10.8 KB
分享到:
相关推荐
python学习资源
jfinal-undertow 用于开发、部署由 jfinal 开发的 web 项目
基于Andorid的音乐播放器项目设计(国外开源)实现源码,主要针对计算机相关专业的正在做毕设的学生和需要项目实战练习的学习者,也可作为课程设计、期末大作业。
python学习资源
python学习资源
python学习一些项目和资源
【毕业设计】java-springboot+vue家具销售平台实现源码(完整前后端+mysql+说明文档+LunW).zip
HTML+CSS+JavaScarip开发的前端网页源代码
python学习资源
【毕业设计】java-springboot-vue健身房信息管理系统源码(完整前后端+mysql+说明文档+LunW).zip
成绩管理系统C/Go。大学生期末小作业,指针实现,C语言版本(ANSI C)和Go语言版本
1_基于大数据的智能菜品个性化推荐与点餐系统的设计与实现.docx
【毕业设计】java-springboot-vue交流互动平台实现源码(完整前后端+mysql+说明文档+LunW).zip
内容概要:本文主要探讨了在高并发情况下如何设计并优化火车票秒杀系统,确保系统的高性能与稳定性。通过对比分析三种库存管理模式(下单减库存、支付减库存、预扣库存),强调了预扣库存结合本地缓存及远程Redis统一库存的优势,同时介绍了如何利用Nginx的加权轮询策略、MQ消息队列异步处理等方式降低系统压力,保障交易完整性和数据一致性,防止超卖现象。 适用人群:具有一定互联网应用开发经验的研发人员和技术管理人员。 使用场景及目标:适用于电商、票务等行业需要处理大量瞬时并发请求的业务场景。其目标在于通过合理的架构规划,实现在高峰期保持平台的稳定运行,保证用户体验的同时最大化销售额。 其他说明:文中提及的技术细节如Epoll I/O多路复用模型以及分布式系统中的容错措施等内容,对于深入理解大规模并发系统的构建有着重要指导意义。
基于 OpenCV 和 PyTorch 的深度车牌识别
【毕业设计-java】springboot-vue教学资料管理系统实现源码(完整前后端+mysql+说明文档+LunW).zip
此数据集包含有关出租车行程的详细信息,包括乘客人数、行程距离、付款类型、车费金额和行程时长。它可用于各种数据分析和机器学习应用程序,例如票价预测和乘车模式分析。
把代码放到Word中,通过开发工具——Visual Basic——插入模块,粘贴在里在,把在硅基流动中申请的API放到VBA代码中。在Word中,选择一个问题,运行这个DeepSeekV3的宏就可以实现在线问答
【毕业设计】java-springboot+vue机动车号牌管理系统实现源码(完整前后端+mysql+说明文档+LunW).zip
【毕业设计】java-springboot-vue交通管理在线服务系统的开发源码(完整前后端+mysql+说明文档+LunW).zip