任何“MVC方式”都可以在 Netbeans 平台中?
我开始在NBP上开发,我只是想问是否有类似NBP的MVC方式。
因为在 cocoa 中你使用 UIView 和 UIViewController 的子类,或者你可以使用 xib 等。 在 Rails 中,您还可以将模型、视图和控制器放在不同的目录中。
所以我应该自己将代码分成几个部分,或者 NBP 也有一些应该使用的专用类。
另外,如果 NBP 提供了一些更好的模式,也许我不应该寻找 MVC。
我将非常感谢您的回答,因为我不知道如何实施已经完成的事情。
I'm starting to develop on NBP and I just wanted to ask is there anything like NBP's way of MVC.
Because in cocoa you use subclasses of UIView and UIViewController or you can use xib's etc.
In Rails you also put your models, views and controllers in different directories.
So should I divide my code into part's by my self or NBP has also some dedicated classes that should be used.
Also maybe I shouldn't look for MVC if NBP offers some better patterns.
I'll be very thankful for answers, because I don't what to implement something that's already done.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NetBeans 平台是 swing,有一些漂亮的附加功能,如果我记得 Swing 的设计是 深受 MVC 影响。所以使用 MVC 应该非常安全。
另外,我最近一直在使用演示模型模式(无论是在 NetBeans 平台上还是在 NetBeans 平台外)。
特别漂亮的是 JGoodies Binding Library 有 对演示模型模式的特定支持
The NetBeans platform is swing with some nifty additions, and If I recall Swing is design is heavily influenced by MVC. So you should be pretty safe using MVC.
Alternatively I've been using the Presentation Model pattern recently (Both on and off the NetBeans platform).
What is especially nifty is that the JGoodies Binding Library has specific support for the Presentation Model pattern