Flex 4:目录结构

发布于 2024-09-29 21:21:18 字数 446 浏览 5 评论 0原文

我正在尝试构建 Flex 应用程序,但有一个有关目录结构的问题。在我的应用程序中,您有一个主要部分,它分为多个类别,每个类别又分为子类别,所有类别都可以通过 ViewStack、弹出窗口等访问。

例如:

  • MyCompany
    • 用户
      • 添加
      • 编辑

当谈到目录结构时,如何最好地布局文件夹?我应该做这样的事情:

  • src
    • com
      • 我的公司
        • 用户
          • 添加.mxml
          • 编辑.mxml

任何人都可以给我任何提示或建议,这是否是最好的方法或者是否有其他方法?

提前致谢。

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

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

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷雾森÷林ヴ 2024-10-06 21:21:18

即使您没有使用纯 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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文