HTML 文件中 Cache-Control 元标记的范围
Scope of Cache-Control meta tag in HTML file
声明时
<meta http-equiv="Cache-Control" content="no-store">
在 HTML 文件的 head
标记内,此语句的作用域是什么?
这是否意味着本文档中引用的所有其他文件(如 JavaScript 或 CSS 文件)也不应缓存?
还是仅引用当前 HTML 文件?
The http-equiv attribute provides an HTTP header for the
information/value of the content attribute.
The http-equiv attribute can be used to simulate an HTTP response
header.
As mentioned in another answer这似乎只影响当前页面。
声明时
<meta http-equiv="Cache-Control" content="no-store">
在 HTML 文件的 head
标记内,此语句的作用域是什么?
这是否意味着本文档中引用的所有其他文件(如 JavaScript 或 CSS 文件)也不应缓存?
还是仅引用当前 HTML 文件?
The http-equiv attribute provides an HTTP header for the information/value of the content attribute.
The http-equiv attribute can be used to simulate an HTTP response header.
As mentioned in another answer这似乎只影响当前页面。