Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

328
Vistas
how to solve service_worker_en.js:3 Uncaught (in promise) TypeError: Failed to execute 'fetch' on 'WorkerGlobalScope'?

My Chrome console is giving this error for my website

service_worker_en.js:3 Uncaught (in promise) TypeError: Failed to execute 'fetch' on 'WorkerGlobalScope': Cannot construct a Request with a Request object that has already been used.

I have read this article on S.O but still can not figure out what the problem really is with my code. Here is my service worker code

self.addEventListener("install", function(event) {
    event.waitUntil(preLoad());
});
var preLoad = function() {
    console.log("Installing web app");
    return caches.open("offline").then(function(cache) {
        console.log("caching index and important routes");
        return cache.addAll(["/", "/devotional-language-en-tab-9"]);
    });
};
self.addEventListener("fetch", function(event) {
    event.respondWith(checkResponse(event.request).catch(function() {
        return returnFromCache(event.request);
    }));
    event.waitUntil(addToCache(event.request));
});
var checkResponse = function(request) {
    return new Promise(function(fulfill, reject) {
        fetch(request).then(function(response) {
            if (response.status !== 404) {
                fulfill(response);
            } else {
                reject();
            }
        }, reject);
    });
};
var addToCache = function(request) {
    return caches.open("offline").then(function(cache) {
        return fetch(request).then(function(response) {
            console.log(response.url + " was cached");
            return cache.put(request, response);
        });
    });
};
var returnFromCache = function(request) {
    return caches.open("offline").then(function(cache) {
        return cache.match(request).then(function(matching) {
            if (!matching || matching.status == 404) {
                return cache.match("offline_en.html");
            } else {
                return matching;
            }
        });
    });
};

According to Chrome the error is mainly on this two lines :

enter image description here

how to solve service_worker_en.js:3 Uncaught (in promise) TypeError: ? Please I need a specific answer that will solve the issue.

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

You need to clone the request object before fetch using API_ENDPOINT.clone(), since the object is already consumed.

var addToCache = function(request) {
  return caches.open("offline").then(function(cache) {
    return fetch(request.clone()).then(function(response) {
      console.log(response.url + " was cached");
      return cache.put(request, response);
    });
  });
};
...
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda