Flex 4:目录结构
我正在尝试构建 Flex 应用程序,但有一个有关目录结构的问题。在我的应用程序中,您有一个主要部分,它分为多个类别,每个类别又分为子类别,所有类别都可以通过 ViewStack、弹出窗口等访问。
例如:
- MyCompany
- 用户
- 添加
- 编辑
- 用户
当谈到目录结构时,如何最好地布局文件夹?我应该做这样的事情:
- src
- com
- 我的公司
- 用户
- 添加.mxml
- 编辑.mxml
- 用户
- 我的公司
- com
任何人都可以给我任何提示或建议,这是否是最好的方法或者是否有其他方法?
提前致谢。
I'm trying to build a Flex application and have a question regarding directory structure. In my application you have a main section, which is split into categories and each category is split into sub categories, all accessible through ViewStacks, popups, etc.
For example:
- MyCompany
- Users
- Add
- Edit
- Users
When it comes to directory structure, how's best to lay out the folders? Should I do something like this:
- src
- com
- myCompany
- users
- Add.mxml
- Edit.mxml
- users
- myCompany
- com
Can anyone give me any tips or advice on whether this is the best approach or if there's another way?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
即使您没有使用纯 MVC 框架,我也会着手创建 MVC 结构。
我会和
com.myCompany.users.views
这里我将添加AddView.mxml,EditView.mxml
com.myCompany.users.helpers
在这里我将添加 UserValidationHelper.as (电子邮件验证和类似的东西)
等等......
I would go about creating an MVC structure, even if you are not using a pure MVC framework.
I would go with
com.myCompany.users.views
here I will add the AddView.mxml, EditView.mxml
com.myCompany.users.helpers
here I will add the UserValidationHelper.as (email validation and stuff like that)
and so on...