GWT 页面导航

发布于 2024-12-10 14:55:18 字数 269 浏览 0 评论 0原文

可能的重复:
GWT:如何创建新页面

我是 GWT 新手。我想知道如何从一个页面导航到另一个页面? 在我的应用程序中,在主屏幕中输入用户名和密码后。如果用户名、密码匹配。应打开一个新页面来显示内容。我正在使用 MVP 架构。

Possible Duplicate:
GWT: How to create a new page

i'm new to GWT. I want to know, how to navigate from one page to another one?
In my application, in the home screen, after enter the username, password. If the username, password matches. A new page should open to display the contents. I'm using the MVP Architecture.

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

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

发布评论

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

评论(2

疯到世界奔溃 2024-12-17 14:55:18

GWT 应用程序导航不同于经典的 Web 应用程序模型。 GWT 是一个异步框架,您宁愿切换页面内容并管理 历史记录 通过内置工具而不是打开新网页。请参阅 GWT SDK 内的费用示例或尝试使用 Spring ROO 来搭建您的应用程序MVP。

费用特别使用自定义滑动面板在所有费用的详细信息视图和列表视图之间切换内容。

如果您确实需要移至新页面,请参阅此解决方案

In GWT application navigation is different from a classic webapp model. GWT is an asynchronous framework, you rather switch content of your page and manage the History by built in tools rather that opening new webpages. Plese refer to Expenses sample located inside GWT SDK or try to use Spring ROO to scaffold your app using MVP.

Expenses in particular uses custom sliding panel to switch contents between for instance Details View and list view of all expenses.

If you really need to move to a new page, please see this solution.

朦胧时间 2024-12-17 14:55:18

我认为最好的选择是研究活动和地点。完成文档和示例。当您弄清楚时,您会意识到它为您提供了用户期望从网站获得的页面到页面体验,包括通过历史记录、书签和后退按钮进行导航,但采用 MVP 架构(也内置于通过 ActivityManager 进行活动和地点),并在单个实际页面中使用 GWT 交换内容(根据 VoodoRider 的回答)。

I think your best bet is to study Activities and Places. Work through the documentation and the examples. When you figure it out, you'll realize that it gives you the page-to-page experience that a user expects from a website, including navigation via history, bookmarks, and the Back button, but in an MVP achitecture (also built into Activities and Places via the ActivityManager) and within a single actual page with GWT swapping in and out the contents (as per the answer from VoodoRider).

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