我编写了一个发送 XHR POST 的扩展,但是添加了两个我不想要的标头:
Pragma: no-cache
Cache-Control: no-cache
我读过有这个问题的其他人已经在开发者工具中关闭了他们的缓存,但我不记得这样做了,而且我只能说应该启用缓存。
什么可能会添加这些?
我编写了一个发送 XHR POST 的扩展,但是添加了两个我不想要的标头:
Pragma: no-cache
Cache-Control: no-cache
我读过有这个问题的其他人已经在开发者工具中关闭了他们的缓存,但我不记得这样做了,而且我只能说应该启用缓存。
什么可能会添加这些?
Firefox 正在添加这些标头。相关代码注释为:
// Bypass the network cache in cases where it makes no sense:
// POST responses are always unique, and we provide no API that would
// allow our consumers to specify a "cache key" to access old POST
// responses, so they are not worth caching.