“deshacer PWA” Código de respuesta

deshacer PWA

if(window.navigator && navigator.serviceWorker) {
  navigator.serviceWorker.getRegistrations()
  .then(function(registrations) {
    for(let registration of registrations) {
      registration.unregister();
    }
  });
}
Odd Ocelot

deshacer PWA

if ('caches' in window) {
    caches.keys()
      .then(function(keyList) {
          return Promise.all(keyList.map(function(key) {
              return caches.delete(key);
          }));
      })
}
Odd Ocelot

Respuestas similares a “deshacer PWA”

Preguntas similares a “deshacer PWA”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código