gpt4 book ai didi

javascript - 清除 Backbone.history

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:45:02 25 4
gpt4 key购买 nike

我正在使用 Backbone 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com