我正在使用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);
答案 0 :(得分:1)
使用XMLHttpRequest时,将应用正常的缓存规则。
根据响应中的HTTP标头,文件可能会被缓存,也可能不会被缓存。