location.reload with cache

时间:2012-07-14 16:52:51

标签: javascript caching reload

如果您对此问题有更好的标题,请随时修改。

在最长的时间里,我总是使用location.reload()来重新加载页面 - 这是最合理的事情,对吗?

但是我最近发现它并不像我最初想的那样与F5相同,而是更多的是Ctrl + F5。当我想要做的只是重新加载页面时,所有图像和其他链接文件都是从服务器重新请求的。

我发现我可以使用location.replace(location.href),这似乎达到了我想要的效果:重新加载页面,但从缓存中检索链接文件。

这是理想的吗?有比这更好的方法吗?我忽略了这种方法可能存在的任何陷阱吗?

(注意:我已经通过将filemtime附加为查询字符串来对链接文件(如脚本)进行缓存管理)

1 个答案:

答案 0 :(得分:4)

在回答我自己的问题时,存在一个巨大的缺陷:当位置包含哈希时,浏览器将跳转到该哈希而不是重新加载页面。

我实施的解决方案如下:

reload = (function() {
    var m = location.search.match(/[?&]__hash=([^&]+)/);
    if( m) location.hash = unescape(m[1]);
    return function() {
            var h = location.hash;
            if( h == "") {
                    location.replace(location.href);
            }
            else {
                    var s = location.search;
                    s = s.replace(/[?&]__hash=[^&]+/,'');
                    s += (s == "" ? "?" : "&")+"__hash="+escape(h);
                    location.replace(location.pathname+s);
            }
    };
})();

假设服务器端没有任何内容使用$_GET['__hash'],则可以安全使用。