重定向到 AppEngine java 中的外部链接?
我想重定向到外部网页,但我不知道该怎么做,因为在 EntryPoint 中我没有像 HttpServlet 那样的请求和响应。
我怎样才能做到这一点?
I want to redirect to a external webpage but I don't know how to do that because in the EntryPoint I don't have Request and Response like in HttpServlets.
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这不行吗?
This doesn't work?
在 GWT 中,您可以使用
Window.Location.assign(url)
将浏览器重定向到新 URL。注意:浏览器将加载新的 URL,并且您的 GWT 应用程序将关闭(所有数据和状态都会丢失)。In GWT you can use
Window.Location.assign(url)
to redirect browser to a new URL. Note: browser will load new URL and your GWT app will be closed (and all data and state lost).