【发布时间】:2015-06-05 11:56:37
【问题描述】:
我有一个 ajax 控制的网站,其中有两种类型的页面,向用户显示。为简单起见,我们称它们为 MAINPAGE 和 SUBPAGE。 MAINPAGE 包含信息,SUBPAGE 都是表单,例如用户可以在其中添加或修改 MAINPAGE 的现有信息。
如果用户使用兼容 HTML5 的浏览器访问我的网站,我会在他/她在我的网站上导航时使用 HistoryJS 更新网址。让我们按下下面的例子:
用户进入我的网站并按以下顺序导航到以下页面,他的历史看起来像这样:
MAINPAGE(1) --> MAINPAGE(2) --> SUBPAGE(1) --> SUBPAGE(2)
当用户在 SUBPAGE(2) 上完成表单时,我想立即将他重定向到他访问的最后一个 MAINPAGE。例如,当用户填写表单时,我希望用户 history 是这样的:
主页面(1) --> 主页面(2)
在视觉上,我能够做到这一点,一切正常,但之后,在 HTML5 浏览器中,如果我按浏览器上的本机返回键,页面会尝试恢复为 SUBPAGE(1),从初始 history 返回的正确状态。
是否可以删除一些历史状态,如果可以,我该怎么做?
这是我目前使用的代码:
ConverserNavigation.prototype.getPreviousMainAction = function() {
// NOTE: the code that deals with non HTML5 compatible browsers,
// was removed because everything works fine there
var startFrom, found=false;
if (this.HistoryJS.status==true) startFrom=History.getState().data.id;
// if browser is HTML5 compatible, get the current state from History object,
// which is a HistoryJS object
while ((!found) && (startFrom>0)) // find the last MAINPAGE visited by user
{
startFrom--;
if (this.historyData[startFrom].pageData.page != 'quickactions') found=true;
}
if (this.HistoryJS.status==true) History.replaceState({id:startFrom}, this.historyData[startFrom].urlData.title, this.historyData[startFrom].urlData.url);
// replace the current history state, with the one to where we want to revert
this.currentNavigationId=startFrom;
this.back(); // render the ui to navigate back to the previous page, works as intended
for (var i=this.currentNavigationId;i<this.historyData.length;i++) delete this.historyData[i]; // delete the unused history data
}
【问题讨论】:
标签: javascript jquery html history.js