保持 Cairngorm Flex 项目干燥的最佳实践(不要重复)

发布于 2024-07-29 17:12:46 字数 195 浏览 5 评论 0原文

我很难构建一个连接到 Rails 应用程序的 Cairngorm Flex3 应用程序...... 我习惯了 Rails DRY 方法,也习惯了约定优于配置的事情……而 Cairngorm 在这些方面做得很糟糕。

如何让弹性代码尽可能保持干燥?

我已经实现了一个通用委托,以避免至少为每个命令分配一个委托。 还有其他想法吗?

I'm having a hard time building a Cairngorm Flex3 app that connects to a rails app...
I'm used to rails DRY approad, and the Convention over Configuration thing too.. and Cairngorm in awful at these.

How do you keep you flex code as DRY as possible?

I've implemented a generic delegate to avoid a delegate for each command, at least.
Any other idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

非要怀念 2024-08-05 17:12:46

好的,好吧,这就是我所做的:

  1. 不使用自定义 CairnGorm 事件,只需创建一个通用静态调度程序并调度字符串...

  2. 一个常见的 RESTful 委托

  3. 创建组件,以便它们继承父级公共变量(appModelLocator 实例也是如此!)
  4. 创建一个通用 ServiceUtil 来发送动态 HTTPServices,不需要 SerivceLocator 等。 !

我认为这是一个很好的改进

OK, well, here's what I did:

  1. No use of Custom CairnGorm Events, simply make a common static dispatcher and dispatch Strings...

  2. One common RESTful delegate

  3. make components so that they inherit parent public vars (appModelLocator instance too!)
  4. Create a generic ServiceUtil to send dynamic HTTPServices, no need for the SerivceLocator etc..

this is a nice improvement in my opinion!

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