Django设置ETag头有什么用?

发布于 2024-10-19 07:06:20 字数 43 浏览 0 评论 0原文

什么是 ETag 标头,Django 为什么设置它以及我应该如何使用它?

What is the ETag header, why does Django set it and how should I use it?

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

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

发布评论

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

评论(1

清音悠歌 2024-10-26 07:06:20

ETag(或实体标记)是万维网协议 HTTP 的一部分。它是 HTTP 提供的多种缓存验证机制之一,允许客户端发出条件请求。

来源

基本上,您对文件进行 md5 或其他操作,如果文件发生更改,则 ETag 不匹配,浏览器可以下载新副本。

An ETag, or entity tag, is part of HTTP, the protocol for the World Wide Web. It is one of several mechanisms that HTTP provides for cache validation, and which allows a client to make conditional requests.

Source.

Basically, you do a md5 or something of the file, and if the file changes, the ETags do not match and the browser can download a new copy.

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