检测 AJAX 请求上的 304 重定向

发布于 2024-11-26 12:28:52 字数 144 浏览 0 评论 0原文

有没有办法检测 AJAX 请求是否已通过 304 响应重定向?我尝试了 xhr.status==304 的 onreadystagechange 但什么也没得到。我们是否仅限于 200 个响应代码?

这个问题已经在SO上提出了,但我找不到任何答案......

is there a way to detect whether an AJAX request has been redirected through a 304 response ? I tried an onreadystagechange with xhr.status==304 but got nothing. Are we only bound to 200 response codes ?

The issue was already raised on SO but I couldn't find any answer...

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

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

发布评论

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

评论(1

女皇必胜 2024-12-03 12:28:52
if (xhr.status == 304){
    //do your code
}

它应该 100% 有效

if (xhr.status == 304){
    //do your code
}

It should 100% work

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