跳过位置被推送到浏览器导航历史记录堆栈

发布于 2024-11-14 21:25:31 字数 506 浏览 0 评论 0原文

假设以下场景:

  • 用户在产品列表页面上
  • 单击产品并重定向到产品详细信息页面
  • 单击购买按钮
  • POST /products/1/purchase/ 被执行并重定向回产品详细信息页面
  • 用户单击后退按钮
  • POST /products/1/purchase/ 再次执行(失败!它应该被重定向到产品列表页面)

您将如何解决后退按钮问题? 是否有任何响应代码强制浏览器从历史堆栈中跳过该位置?

假设我可以实现自己的后退按钮,您将如何实现它?

  • 手动跟踪历史记录,客户端
  • 手动跟踪历史记录,服务器端
  • 设置检查点并在检查点存在时重定向回该检查点

Assuming the following scenario:

  • User is on product list page
  • Clicks a product and is redirected to the product detail page
  • Clicks on purchase button
  • POST /products/1/purchase/ is executed and redirects back to product detail page
  • User clicks back button
  • POST /products/1/purchase/ is executed again (FAIL! it should have been redirected to product list page)

How would you solve the back button problem?
Is there any response code that forces the browser to skip the location from history stack?

Assuming I can implement my own back button, how would you implement it?

  • Manually tracking the history, client-side
  • Manually tracking the history, server-side
  • Setting checkpoints and redirecting back to the checkpoint in case of existence

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文