2

我正在使用主干 Js 开发 phonegap 应用程序。要启用我正在使用的后退按钮功能Backbone.history.start();

对于一种情况,我想清除所有应用程序历史记录并使后退按钮功能无效。

如果有人能回答那就太好了。

提前致谢。

4

1 回答 1

4

检查 Backbone 源代码,我发现可以禁用 Backbone.history ,Backbone.history.stop();因此这可能会给您带来预期的行为。

// Disable Backbone.history, perhaps temporarily. Not useful in a real app,
// but possibly useful for unit testing Routers.
stop: function() {
  Backbone.$(window).off('popstate', this.checkUrl).off('hashchange', this.checkUrl);
  clearInterval(this._checkUrlInterval);
  History.started = false;
},
于 2013-10-22T10:59:14.110 回答