Flash 深层链接导致 Web-Kit 中的页面刷新
我正在开发一个项目,其中我的团队的 Flash 应用程序显示在另一个团队的 Web-Kit 浏览器中。当 Flash Accordions 选择的索引发生更改时,我们遇到了一个错误;网页本身会刷新。由于这是基于地图的应用程序,因此这是不可接受的,因为用户感兴趣的区域丢失了。
根据我迄今为止的研究,我了解到 Flash 使用“深层链接”根据 url 中的“片段”设置 Flash 应用程序的状态,而无需实际刷新页面。因此,Accordion 的选定索引的更改会更新 url,并使用该 url 执行操作,而无需实际刷新页面。
由于这在任何其他浏览器(FF、IE、Chrome、Safari)中都不是问题,因此不兼容似乎与深层链接和 Web-Kit 有关。两个团队都在积极排除故障,但时间已经不多了。有谁知道一种方法可以禁用 url 更改,同时仍然达到所需的结果(即手风琴仍然更改面板)?
I am working on a project where my team's Flash application is being displayed in another team's Web-Kit browser. We are experiencing a bug when a Flash Accordions selected index is changed; the web-page itself refreshes. Since this is a map-based application, this is unacceptable since the users Area of Interest is lost.
From my research so far, I understand that Flash uses "Deep-Linking" to set the state of the Flash App based on "fragments" in the url without actually refreshing the page. So, a change in the Accordion's selected index updates the url, and uses that url to do stuff without actually refreshing the page.
Since this is not a problem in any other browser (FF,IE,Chrome,Safari), the incompatibility seems to be with the Deep-Linking and the Web-Kit. Both teams are actively troubleshooting, but time is running out. Does anyone know of a method to disable the url from changing while still achieving the desired result (i.e. the accordion still changes panels)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将
Accordion
的historyManagementEnabled
属性设置为false
。Accordion 类的 Livedocs 页面。
Try setting the
historyManagementEnabled
property of theAccordion
tofalse
.Livedocs page for the Accordion class.