.js 文件后面的 ?history=1 是什么意思?
我看到一些 JS 和 CSS 文件带有此内容,但不太确定它的含义或用途。在 Asual jQuery Address 插件中,您可以添加查询字符串来确定要打开和关闭的选项。
someFile.js?history=1
Possible Duplicate:
What does appending “?v=1” to CSS and Javascript URLs in link and script tags do?
I have seen some JS and CSS files carry this and not quite sure what it means or what its used for. In the Asual jQuery Address plugin you can add query strings to determine what options to switch on and off.
someFile.js?history=1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此查询字符串值使文件的每个新版本(无论是 javascript、css 或其他资产)都是唯一的,以便浏览器获取最新版本,忽略任何以前缓存的版本(并且浏览器不会有缓存版本,因为URL 是唯一的)。
This querystring value makes each new version of the file (be it javascript, css, or some other asset) unique so that the browser grabs the latest version, ignoring any previously cached version (and the browser won't have a cached version, since the URL is unique).
它确保用户拥有最新版本的 JS 或 CSS 文件,以防浏览器缓存旧版本。
It ensures that users have the latest version of a JS or CSS file in case an older version is cached by their browser.