包 | mx.validators |
类 | public class StringValidator |
继承 | StringValidator Validator EventDispatcher Object |
The <mx:StringValidator>
tag
inherits all of the tag attributes of its superclass,
and add the following tag attributes:
<mx:StringValidator maxLength="NaN" minLength="NaN" tooLongError="This string is longer than the maximum allowed length. This must be less than {0} characters long." tooShortError="This string is shorter than the minimum allowed length. This must be at least {0} characters long." />
属性 | 定义方 | ||
---|---|---|---|
constructor : Object
对类对象或给定对象实例的构造函数的引用。 | Object | ||
enabled : Boolean 将此值设置为 false 将停止验证程序执行验证操作。 | Validator | ||
listener : Object 指定验证侦听器。 | Validator | ||
maxLength : Object 有效字符串的最大长度。 | StringValidator | ||
minLength : Object 有效字符串的最小长度。 | StringValidator | ||
property : String 一个字符串,用于指定包含要验证的值的 source 对象的属性名称。 | Validator | ||
prototype : Object [静态]
对类或函数对象的原型对象的引用。 | Object | ||
required : Boolean = true 如果为 true,则指定缺少值或空值将导致验证错误。 | Validator | ||
requiredFieldError : String 缺少值和 required 属性为 true 时的错误消息。 | Validator | ||
source : Object 指定包含要验证的属性的对象。 | Validator | ||
tooLongError : String 字符串的长度长于 maxLength 属性时的错误消息。 | StringValidator | ||
tooShortError : String 字符串的长度短于 minLength 属性时的错误消息。 | StringValidator | ||
trigger : IEventDispatcher 指定生成触发验证程序的组件。 | Validator | ||
triggerEvent : String 指定触发验证的事件。 | Validator |
方法 | 定义方 | ||
---|---|---|---|
构造函数。 | StringValidator | ||
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 | ||
执行验证并(可选)将结果通知给侦听器。 | Validator | ||
[静态] 调用验证程序数组中的所有验证程序。 | Validator | ||
[静态] 用于调用验证程序的方便方法。 | StringValidator | ||
返回指定对象的原始值。 | Object | ||
检查是否用此 EventDispatcher 对象或其任何始祖为指定事件类型注册了事件侦听器。 | EventDispatcher |
方法 | 定义方 | ||
---|---|---|---|
为从验证程序调度的有效和无效事件设置所有侦听器。 | Validator | ||
覆盖基类 doValidation() 方法以验证字符串。 | StringValidator | ||
返回要验证的对象。 | Validator | ||
从错误结果数组返回 ValidationResultEvent。 | Validator | ||
如果值不为 null,则返回 true。 | Validator | ||
断开从验证程序调度的有效和无效事件的所有侦听器的连接。 | Validator | ||
构造 Validator 后,每当 ResourceManager 又调度一个“change”事件以指示已通过某种方式更改了本地化资源时,将会调用此方法。 | Validator |
maxLength | 属性 |
maxLength:Object
[读写] 有效字符串的最大长度。值为 NaN 表示忽略此属性。
默认值为 NaN.
public function get maxLength():Object
public function set maxLength(value:Object):void
minLength | 属性 |
minLength:Object
[读写] 有效字符串的最小长度。值为 NaN 表示忽略此属性。
默认值为 NaN.
public function get minLength():Object
public function set minLength(value:Object):void
tooLongError | 属性 |
tooLongError:String
[读写]
字符串的长度长于 maxLength
属性时的错误消息。
默认值为 "This string is longer than the maximum allowed length. This must be less than {0} characters long.".
public function get tooLongError():String
public function set tooLongError(value:String):void
tooShortError | 属性 |
tooShortError:String
[读写]
字符串的长度短于 minLength
属性时的错误消息。
默认值为 "This string is shorter than the minimum allowed length. This must be at least {0} characters long.".
public function get tooShortError():String
public function set tooShortError(value:String):void
StringValidator | () | 构造函数 |
public function StringValidator()
构造函数。
doValidation | () | 方法 |
override protected function doValidation(value:Object):Array
覆盖基类 doValidation()
方法以验证字符串。
不要直接调用此方法;Flex 会在执行验证的过程中调用它。如果创建自定义 Validator 类,则必须实现此方法。
参数
value:Object — 要验证的对象。 |
Array — ValidationResult 对象的数组,验证程序检查的每个字段都有一个 ValidationResult 对象。 |
validateString | () | 方法 |
public static function validateString(validator:StringValidator, value:Object, baseField:String = null):Array
用于调用验证程序的方便方法。每个标准 Flex 验证程序都有一个类似的方便方法。
参数
validator:StringValidator — StringValidator 实例。 | |
value:Object — 要验证的字段。 | |
baseField:String (default = null ) —
在 value 参数中指定的子字段的文本表示形式。例如,如果 value 参数指定 value.mystring,则 baseField 值为 "mystring" 。
|
Array — ValidationResult 对象的数组,验证程序检查的每个字段都有一个 ValidationResult 对象。 |
另请参见
<?xml version="1.0" encoding="utf-8"?> <!-- Simple example to demonstrate StringValidator. --> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Script> import mx.controls.Alert; </mx:Script> <mx:StringValidator source="{fname}" property="text" tooShortError="This string is shorter than the minimum allowed length of 4. " tooLongError="This string is longer than the maximum allowed length of 20." minLength="4" maxLength="20" trigger="{myButton}" triggerEvent="click" valid="Alert.show('Validation Succeeded!');"/> <mx:Panel title="StringValidator Example" width="75%" height="75%" paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> <mx:Form> <mx:FormItem label="Enter a name between 4 and 20 characters: "> <mx:TextInput id="fname" width="100%"/> </mx:FormItem> <mx:FormItem > <mx:Button id="myButton" label="Validate" /> </mx:FormItem> </mx:Form> </mx:Panel> </mx:Application>