gpt4 book ai didi

javascript - 是否可以修改服务 worker 缓存响应 header ?

转载 作者:数据小太阳 更新时间:2023-10-29 03:53:24 26 4
gpt4 key购买 nike

我正在尝试标记存储在 Service Worker 缓存中的资源。

我认为可以向资源添加自定义 header 来指示这一点,但是,一旦资源存储在服务 worker 缓存中, header 修改似乎就会被删除。是这样吗?我在 cache spec 中没有看到任何内容关于修改响应 header 。

这是我尝试过的一个例子:

// I successfully cache a resource (confirmed in Dev Tools)
caches.open('testCache').then(cache => {
cache.add('kitten.jpg');
})
.then(() => {
console.log('successfully cached image'); // logs as expected
});

// placeholder
var modifiedResponse;

// get the cached resource
caches.open('testCache')
.then(cache => {
return cache.match('kitten.jpg');
})

// modify the resource's headers
.then(response => {
modifiedResponse = response;
modifiedResponse.headers.append('x-new-header', 'test-value');
// confirm that the header was modified
console.log(modifiedResponse.headers.get('x-new-header')); // logs 'test-value'
return caches.open('testCache');
})

// put the modified resource back into the cache
.then((cache) => {
return cache.put('kitten.jpg', modifiedResponse);
})

// get the modified resource back out again
.then(() => {
return caches.match('kitten.jpg');
})

// the modifed header wasn't saved!
.then(response => {
console.log(response.headers.get('x-new-header')); // logs null
});

我还尝试过删除自定义 header 、修改现有 header 以及创建 new Response() 响应对象而不是获取现有响应对象。

编辑:我使用的是 Chrome 56。

最佳答案

您必须创建一个新响应才能执行此操作:

fetch('./').then(response => {
console.log(new Map(response.headers));

const newHeaders = new Headers(response.headers);
newHeaders.append('x-foo', 'bar');

const anotherResponse = new Response(response.body, {
status: response.status,
statusText: response.statusText,
headers: newHeaders
});

console.log(new Map(anotherResponse.headers));
});

Live demo (查看控制台)

关于javascript - 是否可以修改服务 worker 缓存响应 header ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42585254/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com