fetch(),如何进行非缓存请求

fetch(), how do you make a non-cached request?

本文关键字:缓存 请求 何进行 fetch      更新时间:2023-09-26

使用fetch('somefile.json'),是否可以请求从服务器而不是从浏览器缓存中提取文件?

换句话说,有了fetch(),是否可以绕过浏览器的缓存?

更容易使用缓存模式:

  // Download a resource with cache busting, to bypass the cache
  // completely.
  fetch("some.json", {cache: "no-store"})
    .then(function(response) { /* consume the response */ });
  // Download a resource with cache busting, but update the HTTP
  // cache with the downloaded resource.
  fetch("some.json", {cache: "reload"})
    .then(function(response) { /* consume the response */ });
  // Download a resource with cache busting when dealing with a
  // properly configured server that will send the correct ETag
  // and Date headers and properly handle If-Modified-Since and
  // If-None-Match request headers, therefore we can rely on the
  // validation to guarantee a fresh response.
  fetch("some.json", {cache: "no-cache"})
    .then(function(response) { /* consume the response */ });
  // Download a resource with economics in mind!  Prefer a cached
  // albeit stale response to conserve as much bandwidth as possible.
  fetch("some.json", {cache: "force-cache"})
    .then(function(response) { /* consume the response */ });

参考:https://hacks.mozilla.org/2016/03/referrer-and-cache-control-apis-for-fetch/

Fetch可以获取一个init对象,该对象包含许多您可能想要应用于请求的自定义设置,其中包括一个名为"标题";。

";标题";选项采用Header对象。此对象允许您配置要添加到请求中的标头。

通过在标头中添加pragma:no-cache缓存控制:no-cache,您将强制浏览器检查服务器,查看文件是否与缓存中已有的文件不同。您也可以使用缓存控制:无存储,因为它只是不允许浏览器和所有中间缓存存储返回响应的任何版本。

这是一个示例代码:

var myImage = document.querySelector('img');
var myHeaders = new Headers();
myHeaders.append('pragma', 'no-cache');
myHeaders.append('cache-control', 'no-cache');
var myInit = {
  method: 'GET',
  headers: myHeaders,
};
var myRequest = new Request('myImage.jpg');
fetch(myRequest, myInit)
  .then(function(response) {
    return response.blob();
  })
  .then(function(response) {
    var objectURL = URL.createObjectURL(response);
    myImage.src = objectURL;
  });
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>ES6</title>
</head>
<body>
    <img src="">
</body>
</html>

似乎没有一个解决方案对我有效,但这个相对干净的(AFAICT)破解确实有效(改编自https://webmasters.stackexchange.com/questions/93594/prevent-browser-from-caching-text-file):

  const URL = "http://example.com";
  const ms = Date.now();
  const data = await fetch(URL+"?dummy="+ms)
    .catch(er => game_log(er.message))
    .then(response => response.text());

这只是添加一个伪参数,该参数在每次调用查询时都会发生变化。无论如何,如果其他解决方案似乎有效,我建议使用这些解决方案,但在我的测试中,它们在我的情况下不起作用(例如,使用Cache-Controlpragram的解决方案)。

您可以在标题中设置'Cache-Control': 'no-cache',如下所示::

return fetch(url, {
  headers: {
    'Cache-Control': 'no-cache'
  }
}).then(function (res) {
  return res.json();
}).catch(function(error) {
  console.warn('Failed: ', error);
});