服务工作者:如何处理302重定向响应

时间:2018-04-18 07:58:12

标签: javascript redirect service worker http-status-code-302

嗨,伙计们,我这个问题一直在苦苦挣扎,所以我决定发帖。

我在我的应用程序上安装了一个服务工作者,它安装得很好,激活得很好,缓存也可以。

但是当我点击一个302的页面完成缓存时,它会告诉我:

  

http://localhost:8000/form/”的FetchEvent导致网络错误响应:重定向响应用于重定向模式不是“跟随”的请求。

我一直在阅读很多关于这个主题的内容,我已经在这里查阅了帖子:Service Worker breaking 301 redirects, 那里https://github.com/w3c/ServiceWorker/issues/737 那里https://github.com/GoogleChromeLabs/sw-precache/issues/220

据我所知,提取时的默认重定向模式是{redirect:“follow”},但是当我从重定向页面查看重定向模式时,我发现它是{redirect:“manual”}所以基本上我必须要当它是“手动”时做某事。

我觉得我有点困惑,我在如何在我的代码中实现这个问题。

如果你们能帮助我,你可以节省我的一天。

非常感谢!

这是我的代码:

const STATIC_CACHE_NAME = 'exell-static-v28';
const DYNAMIC_CACHE_NAME = 'exell-dynamic-v4';

// INSTALLING THE SERVICE WORKER AND PRECACHING APPSHELL
self.addEventListener('install', function(event) {
  console.log('[Service Worker] Service Worker installed');
  event.waitUntil(
    caches.open(STATIC_CACHE_NAME) // Create a static cache
    .then(function(cache) {
      console.log('[Service Worker] Precaching App Shell');
      cache.addAll([   // Add static files to the cache
        '/',
        '/build/app.js',
        '/build/global.css',
        'login',
        'logout',
        'offline',
        'form/',
        'form/new/first_page',
        'form/new/second_page',
        'form/new/third_page',
        'form/new/fourth_page',
        'form/new/fifth_page',
        'form/new/sixth_page',
        'profile/',
        'build/fonts/BrandonGrotesque-Medium.a989c5b7.otf',
        'build/fonts/BrandonText-Regular.cc4e72bd.otf',
      ]);
    })
  );
});

// ACTIVATING THE SERVICE WORKER
self.addEventListener('activate', function(event) {
  console.log('[Service Worker] Service Worker activated');
  event.waitUntil(
    caches.keys()
    .then(function(keyList) {
      return Promise.all(keyList.map(function(key) {
        if (key !== STATIC_CACHE_NAME && key !== DYNAMIC_CACHE_NAME) { // If old cache exists
          console.log('[Service Worker] Deleting old cache', key);
          return caches.delete(key);  // Delete it and replace by new one
        }
      }));
    })
  );
  return self.clients.claim();
});


// FETCHING
self.addEventListener('fetch', function(event) {

  // Do not waste time with files we don't want to cache
  if (event.request.url.match(/ajax.js/)) {
    return;
  }

  event.respondWith(
    caches.match(event.request) // Retrieve data from the cache
     .then(function(response) {
        if (response) {
          return response;  // If there is a response, return it
        } else {
          return fetch(event.request) // Otherwise fetch from network
            .then(function(res) {
              return caches.open(DYNAMIC_CACHE_NAME)
                .then(function(cache) {
                  cache.put(event.request.url, res.clone()); // Store the response in the dynamic cache
                  return res; // And return the response
                });
            })
            .catch(function() {  // If no network
              return caches.open(STATIC_CACHE_NAME) // Open the static cache
               .then(function(cache) {
                 cache.match('offline'); // Look for the offline default template and return it
               });
            });
         }
      })
    );
});

2 个答案:

答案 0 :(得分:1)

任何30x响应都应具有type属性,该属性可以解析为“ opaqueredirect”,您可以检查并做出适当反应。也许您想查看以下链接:Response.type

  

opaqueredirect:使用redirect: "manual"进行了获取请求。
响应的状态为0,标题为空,主体为null,尾部为空。

因此,要解决您的问题,您应该检查

response.type === 'opaqueredirect'

而不是与response.status有关的任何检查,例如类似于
下面的检查将不起作用,因为response.status将是0 )< / p>

response.status === 301 || response.status === 302

干杯,祝您编程愉快!

答案 1 :(得分:0)

可能的解决方案

  

对于可能抛出3xx的页面……根本不要缓存内容。   https://medium.com/@boopathi/service-workers-gotchas-44bec65eab3f

self.addEventListener('fetch', event => {

    // path throw a 3xx - don’t cache
    if(event.request.url.indexOf('/') > -1) {
        return;
    }

    ...

}