包 | mx.formatters |
类 | public class PhoneFormatter |
继承 | PhoneFormatter Formatter Object |
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
为美国的七位数字格式提供快捷方式。如果 areaCode
属性包含一个值,并且您使用七位数字格式字符串 (###-####),则要格式化的七位数值将自动在返回的 String 中添加地区代码。地区代码的默认格式为 (###)。您可以使用 areaCodeFormat
属性更改此格式。您可以根据需要随意设置地区代码格式,只要其中包含三个数字占位符即可。
如果出现错误,则会返回一个空 String,以及一个说明已将此错误保存到 error
属性的 String。error
属性可以是下列值之一:
-
"Invalid value"
表示传递给format()
方法的数值无效。此值应该是 Number 或 String 形式的有效数字,也可能其中包含的位数与格式 String 中指定的位数不同。 -
"Invalid format"
表示formatString
属性中的字符总数与validPatternChars
属性中指定的允许字符数不匹配,或者尽管已指定areaCodeFormat
属性,但其中包含的数字占位符不是三个。
The <mx:PhoneFormatter>
tag
inherits all of the tag attributes of its superclass,
and adds the following tag attributes:
<mx:PhoneFormatter areaCode="-1" areaCodeFormat="(###)" formatString="(###) ###-####" validPatternChars="+()#-. " />
相关 API 元素
公共属性
属性 | 由以下参数定义 | ||
---|---|---|---|
areaCode : Object
添加到美国格式的七位电话号码中的地区代码数字,从而形成一个十位数字的电话号码。 | PhoneFormatter | ||
areaCodeFormat : String
当 areacode 属性显示为七位数字格式时,此值是默认的地区代码格式。 | PhoneFormatter | ||
constructor : Object
对类对象或给定对象实例的构造函数的引用。 | Object | ||
error : String
发生错误时由 formatter 保存的说明。 | Formatter | ||
formatString : String
一个字符串,其中包含代表指定电话号码格式的掩码字符。 | PhoneFormatter | ||
validPatternChars : String
适用于 formatString 属性的有效字符列表。 | PhoneFormatter |
受保护的属性
公共方法
方法 | 由以下参数定义 | ||
---|---|---|---|
构造函数。 | PhoneFormatter | ||
[覆盖]
将 String 设置为电话号码格式。 | PhoneFormatter | ||
表示对象是否已经定义了指定的属性。 | Object | ||
表示 Object 类的实例是否在指定为参数的对象的原型链中。 | Object | ||
表示指定的属性是否存在、是否可枚举。 | Object | ||
设置循环操作动态属性的可用性。 | Object | ||
返回此对象的字符串表示形式,其格式设置遵守区域设置特定的约定。 | Object | ||
返回指定对象的字符串表示形式。 | Object | ||
返回指定对象的原始值。 | Object |
受保护的方法
属性详细信息
areaCode | 属性 |
areaCodeFormat | 属性 |
formatString | 属性 |
validPatternChars | 属性 |
构造函数详细信息
PhoneFormatter | () | 构造函数 |
public function PhoneFormatter()
语言版本: | ActionScript 3.0 |
产品版本: | Flex 3 |
运行时版本: | Flash Player 9, AIR 1.1 |
构造函数。
方法详细信息
format | () | 方法 |
示例 如何使用本示例
PhoneFormatterExample.mxml
<?xml version="1.0" encoding="utf-8"?> <!-- Simple example to demonstrate PhoneFormatter. --> <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> <![CDATA[ import mx.events.ValidationResultEvent; private var vResult:ValidationResultEvent; // Event handler to validate and format input. private function Format():void { vResult = pnVal.validate(); if (vResult.type == ValidationResultEvent.VALID) { formattedPhone.text = phoneFormatter.format(phone.text); } else { formattedPhone.text = ""; } } ]]> </fx:Script> <fx:Declarations> <mx:PhoneFormatter id="phoneFormatter" formatString="(###) ###-####" validPatternChars="#-() "/> <mx:PhoneNumberValidator id="pnVal" source="{phone}" property="text" allowedFormatChars=""/> </fx:Declarations> <s:Panel title="PhoneFormatter Example" width="75%" height="75%" horizontalCenter="0" verticalCenter="0"> <mx:Form left="10" right="10" top="10" bottom="10"> <mx:FormItem label="Enter a 10-digit phone number:"> <s:TextInput id="phone" text="" width="75%"/> </mx:FormItem> <mx:FormItem label="Formatted phone number: "> <s:TextInput id="formattedPhone" text="" width="75%" editable="false"/> </mx:FormItem> <mx:FormItem> <s:Button label="Validate and Format" click="Format();"/> </mx:FormItem> </mx:Form> </s:Panel> </s:Application>
Tue Jun 12 2018, 11:04 AM Z