2
服務工作者緩存是否支持緩存控制頭?例如,如果高速緩存中的條目具有標頭cache-control: no-store
或cache-control: max-age=60
,則match()
是否遵守這些標頭?服務工作者緩存是否支持緩存控制頭文件?
儘管報頭cache-control: no-store
出現在響應中,但以下代碼輸出CACHE HIT
。 (我想同樣的問題適用於max-age
。)
function warm(c) {
var req = new Request("/foo.txt");
var res = new Response("hello", {
status: 200,
statusText: "OK",
headers: new Headers({
"cache-control": "no-store",
"content-type": "text/plain"
})
});
return c.put(req, res).then(function() { return c; });
}
function lookup(c) {
return c.match(new Request("/foo.txt")).then(function (r) {
return r ? "CACHE HIT" : "CACHE MISS";
});
}
function deleteAllCaches() {
return caches.keys().then(function (cacheNames) {
return Promise.all(
cacheNames.map(function (cacheName) {
return caches.delete(cacheName);
})
);
});
}
self.addEventListener('install', function (event) {
event.waitUntil(
deleteAllCaches()
.then(caches.open.bind(caches, 'MYCACHE'))
.then(warm)
.then(lookup)
.then(console.log.bind(console))
.then(function() { return true; })
);
});