不使用 JavaScript 检测用户按下后退按钮?

发布于 2024-10-24 05:45:22 字数 103 浏览 1 评论 0原文

我知道有一些方法可以判断用户是否使用 Javascript 按下了后退按钮,但是有没有一种方法可以在不诉诸 Javascript 的情况下判断呢?是否有一种解决方案可能只涉及查看引用 URL?

I know there are ways to tell if an user has pressed the back button using Javascript, but is there a way to tell without resorting to Javascript? Is there a solution that involves just looking at referer URLs perhaps?

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

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

发布评论

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

评论(2

随梦而飞# 2024-10-31 05:45:22

没有 JavaScript 就不行。

问题是后退按钮不能保证您获得服务器命中。它可以缓存页面客户端,即使它确实命中了服务器(加载页面),那么它也会收到来自初始命中的请求,而不是来自您刚刚所在的页面。后退按钮不会向请求添加“推荐”信息。它只是返回到您所做的最后一件事,而不会发送您刚才所在位置的详细信息。

您需要处理这个客户端。

Without javascript no.

The problem is the back button will not guarantee you get a server hit. It can cache the page client side and even if it did hit the server (loading the page), then it would have the request from the initial hit not like it came from the page you were just on. The back button doesn't add 'referral' information to the request. It just goes back to the last thing you did without sending the details of where you just were.

You need to handle this client side.

爱你不解释 2024-10-31 05:45:22

是的,这是可能的。这有两个部分 -

  1. 每个 URL 中都应该有一个唯一的标记。在服务器端,您可以跟踪当前和过去的令牌。当请求出现时,如果令牌与过去的令牌匹配,则按下后退按钮。如果等于当前token,则正常处理请求。否则请求失败。
  2. 现在,该页面可能已被缓存,并且您的服务器可能看不到该请求。因此,您必须采取措施来击败浏览器缓存。设置以下 http 标头应该强制浏览器发出请求 -

    Cache-Control : no-Cache
    Pragma : No-Cache
    Expires : Thu, 01 Jan 1970 00:00:00 GMT

因为这是可能的并不意味着您应该使用它。后退按钮是网络的一项基本技术,破坏它会导致可用性较差。

Yes, it is possible. There are two parts to this -

  1. Every URL should have a unique token in it. On the server side, you keep track of the current and past tokens. When a request comes along, if the token matches a past token, the back button was hit. If it equals the current token, process the request normally. Otherwise fail the request.
  2. Now, the page could have been cached and your server may not see the request. So you have to take steps to defeat the browser cache. Setting the following http headers should force the browser to make a request -

    Cache-Control : no-Cache
    Pragma : No-Cache
    Expires : Thu, 01 Jan 1970 00:00:00 GMT

Because it is possible doesn't mean you should use it though. Backbutton is an essential technique for the web, and breaking it is poor usability.

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