从嵌入式 GWT 应用程序更新父 URL?
我们正在 GWT 中构建一个新应用程序。该应用程序需要合并到现有应用程序中。托管 GWT 应用程序的服务器将不同于托管现有应用程序的服务器。为了解决 SOP 问题,我们计划将 GWT 应用程序嵌入到现有应用程序的 iframe 中。我们希望使用历史记录令牌来记录 GWT 应用程序中的页面更改。这工作正常,即浏览器中的后退和前进按钮按预期工作,除了嵌入 GWT 应用程序的父页面的 URL 不会更改以反映历史令牌更改。有没有办法从 iframe 中嵌入的 GWT 应用程序修改父页面 URL?任何帮助将不胜感激!谢谢!
We are building a new app in GWT. This app will needed to be incorporated into an existing app. The server hosting the GWT app will be different than the server hosting the existing app. To get around the SOP issue, we plan to embed the GWT app in an iframe within the existing app. We would like to use history tokens to record page changes within the GWT app. This works fine, i.e. the back and forward buttons in the browser work as expected, EXCEPT that the URL of the parent page embedding the GWT app does not change to reflect the history token changes. Is there any way to modify the parent page URL from the GWT app embedded within an iframe? Any help would be greatly appreciated! Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里找到了这样做的技术:http://softwareas.com/cross-domain-communication- with-iframe。这不是 GWT 特有的,但在 GWT 中是可行的。我尝试了“马拉松”版本,它有效。
Found techniques to do so here: http://softwareas.com/cross-domain-communication-with-iframes. This is not specific to GWT but is doable in GWT. I tried the "Marathon" version and it works.