我正在使用主干 Js 开发 phonegap 应用程序。为了启用后退按钮功能,我使用 Backbone.history.start();
。
对于一种情况,我想清除所有应用程序历史记录并使后退按钮功能无效。
如果有人能回答,那就太好了。
提前致谢。
检查 Backbone 源代码我发现可以使用 Backbone.history.stop();
禁用 Backbone.history,因此这可能会给您带来预期的行为。
// 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;
},
关于javascript - 清除 Backbone.history,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19514295/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |