菜鸟教程小白 发表于 2022-12-13 04:51:32

javascript - 清除 Backbone.history


                                            <p><p>我正在使用主干 Js 开发 phonegap 应用程序。为了启用后退按钮功能,我使用 <code>Backbone.history.start();</code>。 </p>

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

<p>如果有人能回答,那就太好了。 </p>

<p>提前致谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>检查 Backbone 源代码我发现可以使用 <code>Backbone.history.stop();</code> 禁用 Backbone.history,因此这可能会给您带来预期的行为。</p>

<pre><code>// Disable Backbone.history, perhaps temporarily. Not useful in a real app,
// but possibly useful for unit testing Routers.
stop: function() {
Backbone.$(window).off(&#39;popstate&#39;, this.checkUrl).off(&#39;hashchange&#39;, this.checkUrl);
clearInterval(this._checkUrlInterval);
History.started = false;
},
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于javascript - 清除 Backbone.history,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19514295/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19514295/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: javascript - 清除 Backbone.history