GWTP:给定条件重定向到另一个页面
得到这个应用程序,如果您第一次打开它,它会检查数据库中的值,如果该值存在,一切都很好
如果该值不存在,我想重定向到另一个页面,用户可以在其中输入此值。
我该怎么做?
PS:我可以使用 URL 中的 @NameTolen 值访问其他页面。只是不知道如何进行自动“切换”以及在 Presenter 层的哪个部分对其进行编码(如果它甚至在那里)。
Got this app, if you open it the first time it will check for a value in a DB, if the value is there all is good
If the value is NOT there, I would like to redirect to another page where the user can input this.
How can I do this?
PS: I can access to the other page using the @NameTolen value in the URL. Just don't know how to make an automatic "switch" and in which part of the Presenter layer to code it (if it even goes there).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在演示器中,您可以检查
onReveal()
或onReset()
方法中的值。请参阅演示者生命周期:http://code.google.com/p/ gwt-platform/wiki/GettingStarted#Presenter_lifecycle您还需要使用构造函数在演示器中注入
PlaceManager
。然后您可以像这样重定向:请参阅揭示演示者:http:// code.google.com/p/gwt-platform/wiki/GettingStarted#Revealing_a_presenter
In your presenter you can check the value in
onReveal()
oronReset()
methods. See presenter life cycle: http://code.google.com/p/gwt-platform/wiki/GettingStarted#Presenter_lifecycleYou also need to inject the
PlaceManager
in the presenter using the constructor. And then you can redirect like that:See Revealing a Presenter: http://code.google.com/p/gwt-platform/wiki/GettingStarted#Revealing_a_presenter
您甚至可以在透露演示者之前完成此操作。
在
prepareFromRequest
中,您可以调用调度程序并在回调中决定“重定向”的位置。另请参阅此处了解更多想法:
http://code.google.com/p/gwt-platform/wiki /入门#Using_manual_reveal
You could do it even before revealing the presenter.
In
prepareFromRequest
, you can call the dispatcher and in the callback decide where to "redirect".Also see here for more ideas:
http://code.google.com/p/gwt-platform/wiki/GettingStarted#Using_manual_reveal