是否使用XMLHttpRequest()缓存文件

时间:2018-01-14 12:48:57

标签: javascript

我正在使用XMLHttpRequest()加载一些js文件。浏览器是否使用以下代码缓存文件?

var xhr = new XMLHttpRequest();
xhr.open("get", "example.js", true);
xhr.onreadystatechange = function () {
    if (xhr.readyState == 4) {
        if (xhr.status >= 200 && xhr.status < 300 || xhr.status == 304) {
            var script = document.createElement("script");
            script.type = "text/javascript";
            script.text = xhr.responseText;
            document.body.appendChild(script);
        }
    }
};
xhr.send(null);

1 个答案:

答案 0 :(得分:1)

使用XMLHttpRequest时,将应用正常的缓存规则。

根据响应中的HTTP标头,文件可能会被缓存,也可能不会被缓存。