MXML tag rules

学习FLEX 3 也有段时间了,最近发现有点资料欠缺,看国外的视频太累,都是英文的,在网上找来找去也没找到适合自己看得,后来突然一想FLEX3自带的帮助不是很强大么?我怎么一直在“骑马找马”,唉,原来我要的东西就在我的脚底下,开始读,哈哈。虽然是英文的,但是还能看懂,下面是我简单的翻译了下MXML标签规则。
原文:
 
1.The id property is not required on any tag.
2.The id property is not allowed on the root tag.
3.Boolean properties take only true and false values.
4.The <mx:Binding> tag requires both source and destination properties.
5.The <mx:Binding> tag cannot contain an id property.
6.The <mx:WebService> tag requires a wsdl value or destination value, and does not allow both.
7.The <mx:RemoteObject> tag requires a source value or a named value, and does not allow both.
8.The <mx:HTTPService> tag requires a url value or a destination value, and does not allow both.
9.The <mx:operation> tag requires a name value, and does not allow duplicate name entries.
10.The <mx:operation> tag cannot contain an id property.
11.The <mx:method> tag requires a name value and does not allow duplicate name entries.
12.The <mx:method> tag cannot contain an id property.
译文:
1.所有标签中Id 属性不是必须的
2.在根标签中不允许出现id属性
3.Boolean 属性只有true和false两个值, 
4.在<mx:Binding>标签中“source”和destination是必须的
5.<mx:Binding>标签没有id属性
6.<mx:WebService> 标签中必须有一个wsl值或destination值,但是不允许wsdl和destination同时存在
7.<mx:RemoteObject>标签中必须有一个source值或name值,但是不允许这两个值同时存在
8.<mx:HttpService>标签中必须有一个url值或destination值,但是不允许这两个值同时存在
9.<mx:operation>标签中中必须有name值,但是不允许是复数
10.<mx:operation>标签中不允许有id值,即没有id属性
11.<mx:method>标签中中必须有name值,但是不允许是复数
12.<mx:method>标签中不允许有id值,即没有id属性
 
希望能给大家一点小的帮助,呵呵。

本文出自 “mycto” 博客,谢绝转载!

你可能感兴趣的:(生活,职场,翻译,休闲)