CSS和Javascript文件不会经常更改,因此我希望它们由Web浏览器缓存。 但我也希望Web浏览器能够看到对这些文件所做的更改,而无需用户清除其浏览器缓存。 还需要一种与版本控制系统(例如Subversion)一起使用的解决方案。
Some solutions I have seen involve adding a version number to the end of the file in the form of a query string.
Could use the SVN revision number to automate this for you: ASP.NET Display SVN Revision Number
您可以指定如何包括另一个文件的Revision变量吗? 也就是说,在HTML文件中,我可以在CSS或Javascript文件的URL中包含修订号。
在Subversion一书中,它谈到了修订:"此关键字描述了该文件在存储库中更改的最后一个已知修订"。
Firefox also allows pressing CTRL+R to reload everything on a particular page.
为了明确起见,我正在寻找不需要用户自己做任何事情的解决方案。
我发现,如果将文件的最后修改的时间戳附加到URL的末尾,浏览器将在修改文件时请求文件。例如在PHP中:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| function urlmtime($url) {
$parsed_url = parse_url($url);
$path = $parsed_url['path'];
if ($path[0] =="/") {
$filename = $_SERVER['DOCUMENT_ROOT'] ."/" . $path;
} else {
$filename = $path;
}
if (!file_exists($filename)) {
// If not a file then use the current time
$lastModified = date('YmdHis');
} else {
$lastModified = date('YmdHis', filemtime($filename));
}
if (strpos($url, '?') === false) {
$url .= '?ts=' . $lastModified;
} else {
$url .= '&ts=' . $lastModified;
}
return $url;
}
function include_css($css_url, $media='all') {
// According to Yahoo, using link allows for progressive
// rendering in IE where as @import url($css_url) does not
echo '<link rel="stylesheet" type="text/css" media="' .
$media . '" href="' . urlmtime($css_url) . '">'."\
";
}
function include_javascript($javascript_url) {
echo '<script type="text/javascript" src="' . urlmtime($javascript_url) .
'">'."\
";
} |
我看到的一些解决方案涉及以查询字符串的形式在文件末尾添加版本号。
1
| <script type="text/javascript" src="funkycode.js?v1"> |
您可以使用SVN修订版号来自动执行此操作,方法是在上述v1出现的位置之后的HTML文件中添加单词LastChangedRevision。您还必须设置存储库以执行此操作。
我希望这可以进一步澄清我的答案吗?
Firefox还允许按CTRL + R重新加载特定页面上的所有内容。
我认为,最好将版本号作为文件本身的一部分,例如myscript.1.2.3.js。您可以将您的网络服务器设置为永久缓存该文件,而在拥有新版本时只需添加一个新的js文件。
当我找到grom的答案时,我还想知道如何执行此操作。感谢您的代码。
我在理解应如何使用代码方面感到困惑。 (我不使用版本控制系统。)总之,在调用样式表时,要包括时间戳记(ts)。您不打算经常更改样式表:
1 2 3 4 5
| <?php
include ('grom_file.php');
// timestamp on the filename has to be updated manually
include_css('_stylesheets/style.css?ts=20080912162813', 'all');
?> |
当您发布新版本的CSS或JS库时,导致发生以下情况:
修改文件名以包含唯一的版本字符串
修改引用库的HTML文件以指向版本文件
(对于发布脚本,这通常很简单)
现在,您可以将CSS / JS的Expires设置为将来的几年。每当您更改内容时,如果引用HTML指向新的URI,则浏览器将不再使用旧的缓存副本。
这将导致所需的缓存行为,而无需任何用户。