程序化“返回”在 Backbone.js 中

发布于 2024-12-13 04:42:18 字数 210 浏览 0 评论 0原文

我有一个 #/xxx 中的项目列表,单击该列表时会弹出一个灯箱并将哈希更改为 #/xxx/yyy。在灯箱中,有一个“后退”按钮。如何恢复到上一页(即“#/xxx”)?我正在寻找类似“Backbone.back()”的内容。此操作不得触发路由处理程序(否则项目列表将为空,因为它是 Ajax 搜索结果)。

I have a list of items in #/xxx which when clicked will pop up a lightbox and change the hash to #/xxx/yyy. In the lightbox, there's a "Back" button. How do I revert to previous page (i.e. "#/xxx")? I'm looking for something like "Backbone.back()". This action must not trigger the route handler (otherwise the list of items will be empty since it's an Ajax search result).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠栀 2024-12-20 04:42:18

我可以想到两种简单的方法来做到这一点:

1)使“后退”按钮根本不返回,只需再次重复上一条路线(调出灯箱之前的路线)即可。然后回顾历史就会产生你期望看到的结果。

2) 只需告诉浏览器在历史记录中后退一步即可。您可以在 JavaScript 中执行此操作,如下所示:

window.history.back();

结果应该与执行同一操作的其他方法一样。

There's two easy ways I can think of doing this:

1) Make the "back" button not really go back at all, just repeat the previous route (the one prior to bringing up the lightbox) again. Then going backwards and forwards through the history will produce the results you expect to see.

2) Just tell the browser to step back one step within the history. You can do that in JavaScript like so:

window.history.back();

Results should be just like the other way of doing the same thing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文