Html5 History Api - pushState from a domain to a subdomain

早过忘川 提交于 2019-11-28 03:18:40

问题


I have a website as the landing and information page to a web portal type of application.

I need the link that goes to the portal to set off an animation that beautifully transitions to the portal view (navigation slides out, new navigation slides in, various widgets fade out, new ones fade in, etc).

However, I also need the url to go from www.mydomain.com to portal.mydomain.com.

I'm willing to go to any length to have BOTH, the animation to load the portal and the url to be a subdomain.

As it stands I understand doing this would violate the security policy and not be allowed, but there is no way to achieve a fluid transition into the portal if a reload is to be had.

Is there ANYTHING that can be done? Perhaps some way to establish explicit trust between the two domains.


回答1:


It can't be done. This is by design. There are no exceptions.

From the Mozilla pushState documentation:

The new URL must be of the same origin as the current URL; otherwise, pushState() will throw an exception.



来源:https://stackoverflow.com/questions/14807921/html5-history-api-pushstate-from-a-domain-to-a-subdomain

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!