我现在花了无数个小时试图让缓存 API 缓存一个简单的请求。我让它在两者之间工作过一次,但忘记在缓存键中添加一些东西,现在它不再工作了。不用说,cache.put()
没有一个返回值来指定请求是否实际被缓存并不能完全帮助我,我只能反复试验。有人可以提示我做错了什么以及实际需要什么吗?我现在已经阅读了所有文档超过 3 遍,我很茫然……</p>
值得注意的是,这个 REST 端点集pragma: no-cache
和其他所有与无缓存相关的缓存,但我还是想强制缓存响应,这就是为什么我尝试在缓存之前完全重写标头,但它仍然无法正常工作(不匹配或不存储,没有人知道......)
async function apiTest(token, url) {
let apiCache = await caches.open("apiResponses");
let request = new Request(
new URL("https://api.mysite.com/api/"+url),
{
headers: {
"Authorization": "Bearer "+token,
}
}
)
// Check if the response is already in the cloudflare cache
let response = await apiCache.match(request);
if (response) {
console.log("Serving from cache");
}
if (!response) {
// if not, ask the origin if the permission is granted
response = await fetch(request);
// cache response in cloudflare cache
response = new Response(response.body, {
status: response.status,
statusText: response.statusText,
headers: {
"Cache-Control": "max-age=900",
"Content-Type": response.headers.get("Content-Type"),
}
});
await apiCache.put(request, response.clone());
}
return response;
}
在此先感谢您的帮助,我首先在 Cloudflare 社区上提出了相同的问题,但在 2 周内没有收到答复