GWT 入口点配置
你好
我必须使用 GWT 和 RPC 创建一个登录模块,具有登录、注册和忘记密码的功能。登录工作正常。现在我必须继续注册并忘记了密码,但我在配置入口点时遇到了麻烦。在我的登录页面中,我创建了超链接“注册”和“忘记密码”,当我单击“注册超链接”时,我想打开注册页面(使用 GWT 创建),但我不知道如何实现。请给我任何有用的建议..
谢谢
阿伦
Hi
I have to create one login module using GWT with RPC with the functionality of login, registration and forgotPassword. Login is working fine. Now i have to proceed for registration and forgot password but i have in trouble to configure entry point. In my login page i have created hyperlink "REGISTER" and "FORGOT PASSWORD" and when i will click on Register Hyperlink i want to open Registration page (created using GWT) but i have no idea to implement that. please provide me any useful suggestion..
Thanks
Arun
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建 具有标记的超链接对象,例如注册和忘记密码。然后添加一个 HistoryListener 或 ValueChangeHandler (取决于您使用的 GWT 版本),然后只需将页面添加到面板,或者如果您想要执行重定向,则可以执行 JSNI 重定向。
GWT 2.0 文档
You can create Hyperlink objects that have tokens for example Register and forgotPassword. Then you add a HistoryListener or a ValueChangeHandler (depends on which version of GWT you are using) and then just add the page to the panel or if you want to do a redirect you can do a JSNI redirect.
Docs for GWT 2.0