Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何让浏览器缓存我的图像并在特定时间段后过期
您可以使用多个 HTTP 标头来更改内容缓存策略。
这个:
Cache-control: no-cache
指示浏览器根本不缓存内容。
Expires: Tue, 20 Mar 2024 02:00:00 GMT
指示浏览器在给定时间之前使其缓存副本过期。
ETag: ab10be20
指示浏览器将其视为ab10be20内容的散列,并且仅当后续请求时该值发生更改时,它才需要下载新内容。
ab10be20
请注意,所有这些都只是有效的建议,并且没有可能的方法来远程强制清除缓存。