GWT MVC +用户界面绑定器
使用 UIBinder 为 UI 实现 MVC 风格模式的最简单方法是什么?
What's the easiest and simplest way to implement an MVC-style pattern using UIBinder for the UIs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅:http://www.google.com/events/io/ 2009/sessions/GoogleWebToolkitBestPractices.html
通常,您使用 MVC 来对抗意大利面条,但事件总线管理是最受欢迎的 GWT 模式。
See this: http://www.google.com/events/io/2009/sessions/GoogleWebToolkitBestPractices.html
U Normally you use MVC to fight spaghetti but Event bus manage is the favored GWT mode.
查看这篇博文。
它讨论了一起使用 MVP 和 UIBinder,并包含一个示例应用程序。我想您会发现 GWT 领域的大多数人都在谈论模型-视图-呈现器 (MVP),而不是 MVC。
Check out this blog post.
It talks about using MVP and UIBinder together, and includes a sample app. I think you'll find most people in the GWT arena talking about Model-View-Presenter (MVP) rather than MVC.
使用 GWT,UiBinder 完全位于“视图”内。 XML 和Java 文件一起构成一个视图。所以 UiBinder 并不真正处理模型和控制器,它只是视图。
这能澄清事情吗?
With GWT, UiBinder is entirely within the "View". The XML and Java file together are a view. So UiBinder doesn't really ever deal with the Model and Controller, it's just the View.
Does this clear things up?