@Ethaniel我使用CloudflareWorker做地球图片后端,我试图使用Cloudflare缓存但cf-cache-status 字段缺失没有缓存 中发帖

我正在使用 CloudflareWorkers 来处理地球图像请求,并想使用 Cloudflare 的缓存来避免过多不必要的Workers请求刷爆我的账单。我在 Worker 中设置最新图片的缓存头 
return new Response(imageResponse.body, {
headers: {
'Content-Type': 'image/png',
'Cache-Control': 'public, max-age=300, s-maxage=600'
}
});

但我实际打开发现Cloudflare并没有缓存我的图片,并且我每一次刷新都发送给了Workers处理,我在F12中发现缺失cf-cache-status字段:
[image]
[image]
我尝试过设置Cloudflare Cache Rules、将访问改...