包 | mx.validators |
类 | public class SocialSecurityValidator |
继承 | SocialSecurityValidator Validator EventDispatcher Object |
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
The <mx:SocialSecurityValidator>
tag
inherits all of the tag attributes of its superclass,
and adds the following tag attributes:
<mx:SocialSecurityValidator allowedFormatChars=" -" invalidCharError="You entered invalid characters in your Social Security number." wrongFormatError="The Social Security number must be 9 digits or in the form NNN-NN-NNNN." zeroStartError="Invalid Social Security number; the number cannot start with 000." />
公共属性
属性 | 由以下参数定义 | ||
---|---|---|---|
allowedFormatChars : String
指定输入中允许的格式化字符集。 | SocialSecurityValidator | ||
constructor : Object
对类对象或给定对象实例的构造函数的引用。 | Object | ||
enabled : Boolean
将此值设置为 false 将停止验证程序执行验证操作。 | Validator | ||
invalidCharError : String
值包含 allowedFormatChars 属性定义的数字和格式化字符之外的字符时的错误消息。 | SocialSecurityValidator | ||
listener : Object
指定验证侦听器。 | Validator | ||
property : String
一个字符串,用于指定包含要验证的值的 source 对象的属性名称。 | Validator | ||
required : Boolean = true
如果为 true,则指定缺少值或空值将导致验证错误。 | Validator | ||
requiredFieldError : String
缺少值和 required 属性为 true 时的错误消息。 | Validator | ||
source : Object
指定包含要验证的属性的对象。 | Validator | ||
trigger : IEventDispatcher
指定生成触发验证程序的组件。 | Validator | ||
triggerEvent : String
指定触发验证的事件。 | Validator | ||
wrongFormatError : String
值的格式设置不正确时的错误消息。 | SocialSecurityValidator | ||
zeroStartError : String
值包含无效社会保障号时的错误消息。 | SocialSecurityValidator |
受保护的属性
公共方法
方法 | 由以下参数定义 | ||
---|---|---|---|
构造函数。 | SocialSecurityValidator | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
使用 EventDispatcher 对象注册事件侦听器对象,以使侦听器能够接收事件通知。 | EventDispatcher | ||
将事件调度到事件流中。 | EventDispatcher | ||
检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。 | EventDispatcher | ||
表示对象是否已经定义了指定的属性。 | Object | ||
如果 Validator 是使用 MXML 标签创建的,则由 MXML 编译器自动调用。 | Validator | ||
表示 Object 类的实例是否在指定为参数的对象的原型链中。 | Object | ||
表示指定的属性是否存在、是否可枚举。 | Object | ||
从 EventDispatcher 对象中删除侦听器。 | EventDispatcher | ||
设置循环操作动态属性的可用性。 | Object | ||
返回此对象的字符串表示形式,其格式设置遵守区域设置特定的约定。 | Object | ||
返回指定对象的字符串表示形式。 | Object | ||
执行验证并(可选)将结果通知给侦听器。 | Validator | ||
[静态]
调用验证程序数组中的所有验证程序。 | Validator | ||
[静态]
用于调用验证程序的方便方法。 | SocialSecurityValidator | ||
返回指定对象的原始值。 | Object | ||
检查是否用此 EventDispatcher 对象或其任何祖代为指定事件类型注册了事件侦听器。 | EventDispatcher |
受保护的方法
方法 | 由以下参数定义 | ||
---|---|---|---|
为从验证程序调度的有效和无效事件设置所有侦听器。 | Validator | ||
[覆盖]
覆盖基类 doValidation() 方法以验证社会保障号。 | SocialSecurityValidator | ||
返回要验证的对象。 | Validator | ||
从错误结果数组返回 ValidationResultEvent。 | Validator | ||
如果值不为 null,则返回 true。 | Validator | ||
断开从验证程序调度的有效和无效事件的所有侦听器的连接。 | Validator | ||
构造 Validator 后,每当 ResourceManager 又调度一个“change”事件以指示已通过某种方式更改了本地化资源时,将会调用此方法。 | Validator |
受保护的常量
属性详细信息
allowedFormatChars | 属性 |
invalidCharError | 属性 |
invalidCharError:String
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
值包含 allowedFormatChars
属性定义的数字和格式化字符之外的字符时的错误消息。
默认值为 "You entered invalid characters in your Social Security number."。
实现
public function get invalidCharError():String
public function set invalidCharError(value:String):void
wrongFormatError | 属性 |
zeroStartError | 属性 |
构造函数详细信息
SocialSecurityValidator | () | 构造函数 |
public function SocialSecurityValidator()
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
构造函数。
方法详细信息
doValidation | () | 方法 |
override protected function doValidation(value:Object):Array
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
覆盖基类 doValidation()
方法以验证社会保障号。
不要直接调用此方法;Flex 会在执行验证的过程中调用它。如果创建自定义 Validator 类,则必须实现此方法。
参数
value:Object — 要验证的对象。
|
Array — ValidationResult 对象的数组,验证程序检查的每个字段都有一个 ValidationResult 对象。
|
validateSocialSecurity | () | 方法 |
public static function validateSocialSecurity(validator:SocialSecurityValidator, value:Object, baseField:String):Array
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
用于调用验证程序的方便方法。每个标准 Flex 验证程序都有一个类似的方便方法。
参数
validator:SocialSecurityValidator — SocialSecurityValidator 实例。
| |
value:Object — 要验证的字段。
| |
baseField:String — 在 value 参数中指定的子字段的文本表示形式。例如,如果 value 参数指定 value.social,则 baseField 值为 social 。
|
Array — ValidationResult 对象的数组,验证程序检查的每个字段都有一个 ValidationResult 对象。
|
相关 API 元素
示例 如何使用本示例
SocialSecurityValidatorExample.mxml
<?xml version="1.0" encoding="utf-8"?> <!-- Simple example to demonstrate SocialSecurityValidator. --> <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"> <fx:Script> import mx.controls.Alert; </fx:Script> <fx:Declarations> <mx:SocialSecurityValidator source="{ssn}" property="text" trigger="{myButton}" triggerEvent="click" valid="Alert.show('Validation Succeeded!');" invalid="Alert.show('Validation Failed!');"/> </fx:Declarations> <s:Panel title="Social Security Validator Panel" width="75%" height="75%" horizontalCenter="0" verticalCenter="0"> <mx:Form left="10" right="10" top="10" bottom="10"> <mx:FormItem label="Enter Social Security number: "> <s:TextInput id="ssn" width="100%"/> </mx:FormItem> <mx:FormItem > <s:Button id="myButton" label="Validate" /> </mx:FormItem> </mx:Form> </s:Panel> </s:Application>
Tue Jun 12 2018, 11:04 AM Z