我正在开发一个 iPhone PhoneGap 应用程序,并且偶然发现了登录后重定向用户的问题。
流程如下:
- 应用程序正在加载。
我将用户重定向到位于远程服务器上的登录页面并传递当前页面的参数,以便用户在成功登录后被重定向。
例如http://www.myloginserver.co.il?ret= '这是本地 html 文件的 url'。
问题是我无法让登录页面重定向回本地 html。
我尝试传递以下网址:
- window.location.href
- window.location.href.substring(window.location.href.indexOf("www/")
- "file:////" + window.location.href.substring(window.location.href.indexOf("www/")
有没有人遇到过这个问题?
谢谢,乌迪