Flex 3 中组件的推荐前缀命名约定是什么?
我正在寻找一种标准方法来命名我的 Flex 应用程序中的组件。 例如,所有 TextField 的 ID 属性均以“txt”开头(即“txtFirstName”)。 有谁熟悉我可以使用的前缀命名约定列表,而不是重新发明轮子?
I'm looking for a standard way to name components in my Flex application. For example, all TextFields begin with "txt" in their ID attribute (i.e., "txtFirstName"). Rather than re-invent the wheel, is anyone familiar with a list of prefix naming conventions that I can use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Adobe 不建议使用前缀约定,因为他们在组件实例名称中使用组件的全名。
例如:usernameTextInput、userComboBox 等。
更多信息:http://opensource.adobe.com/wiki /display/flexsdk/Coding+Conventions#CodingConventions-Naming
如果您确实想使用前缀,则可能需要使用 VB 前缀:http://www.rwc.uc.edu/cook/VBI_PREFIXES.HTM
There is no prefix convention that Adobe recommends since they use the full name of the component in a component instance name.
For instance: usernameTextInput, userComboBox, etc.
More info: http://opensource.adobe.com/wiki/display/flexsdk/Coding+Conventions#CodingConventions-Naming
If you really want to use prefixes, you might want to use the VB prefixes: http://www.rwc.uc.edu/cook/VBI_PREFIXES.HTM
查看 Adobe 的 Flex 编码约定文档。 您看到的大多数 Flex 代码都非常符合此编码标准。
Check out Adobe's Flex Coding Conventions document. Most of the flex code you see stays pretty true to this coding standard.