使浏览器删除特定历史状态

时间:2015-06-05 11:56:38

标签: javascript jquery html5 history.js

我有一个ajax控制的网站,我有两种类型的页面,显示给用户。为简单起见,我们称之为 MAINPAGE SUBPAGE MAINPAGE 包含信息, SUBPAGE 是所有表单,用户可以在其中添加或修改 MAINPAGE 的现有信息。

如果我的网站被具有HTML5兼容浏览器的用户访问,我使用HistoryJS在他/她在我的网站上导航时更新网址。让我们按下面的例子:

用户进入我的网站并按以下顺序导航到以下页面,他的历史看起来像这样:

  

主页(1) - >主页(2) - > SUBPAGE(1) - >子页面(2)

当用户在 SUBPAGE(2)上填写表单时,我想立即将他重定向到他访问过的最后一个 MAINPAGE 。例如,当用户填写表单时,我希望用户 history 是这样的:

  

主页(1) - >网主页(2)

在视觉上,我能够实现这一点,一切正常,但之后,在HTML5浏览器中,如果我按下浏览器上的本机后退键,页面会尝试恢复为 SUBPAGE(1),从最初的历史开始的正确的后退状态。

是否可以删除某些历史状态,如果是,我该怎么做?

这是我到目前为止使用的代码:

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

}

1 个答案:

答案 0 :(得分:1)

我设法通过以下方式修改我的代码来解决此问题:

取代这一行:

if (this.HistoryJS.status==true) History.replaceState({id:startFrom}, this.historyData[startFrom].urlData.title, this.historyData[startFrom].urlData.url);

用这个:

if (this.HistoryJS.status==true) {
    History.go(goBack); //goBack is the number of states I have to backtrack
    this.HistoryJS.manualStateChange=false; // telling the browser to not fire my own UI updating functions
    History.back(); // navigating one more state back in the History object
    History.pushState({id:startFrom}, this.historyData[startFrom].urlData.title, this.historyData[startFrom].urlData.url); // recreating the original state in the History.
    this.HistoryJS.manualStateChange=true; // restarting the UI update functions on pop or push events
}