我写了一个发送XHR POST的扩展程序,但是我添加了两个我不想要的标题:
Pragma: no-cache
Cache-Control: no-cache
我已经读过有这个问题的其他人在开发人员工具中关闭了他们的缓存,但我不记得这样做了,而且我可以告诉我应该启用缓存。
可能会添加这些内容吗?
答案 0 :(得分:0)
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.
中