最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to check if Offline with service worker? - Stack Overflow

programmeradmin2浏览0评论

I've been following this tutorial

So far I was able to make my service worker cache the offline page and load it but I want to show this offline.html page only when there is no internet access. And the way it works now is it shows it every time I refresh the page even with internet access unless I check the Bypass for network checkbox in Chrome's Application tab in the developer tools.

self.addEventListener('fetch', function(event) {
    console.log(event.request.url);
    event.respondWith(
        fetch('https://mysite/offline.html')
    );;
});

I've been following this tutorial https://codelabs.developers.google./codelabs/offline/#7

So far I was able to make my service worker cache the offline page and load it but I want to show this offline.html page only when there is no internet access. And the way it works now is it shows it every time I refresh the page even with internet access unless I check the Bypass for network checkbox in Chrome's Application tab in the developer tools.

self.addEventListener('fetch', function(event) {
    console.log(event.request.url);
    event.respondWith(
        fetch('https://mysite/offline.html')
    );;
});
Share Improve this question edited Aug 25, 2019 at 16:46 Francesco 10.9k8 gold badges75 silver badges120 bronze badges asked Jun 24, 2018 at 14:41 nivednived 1412 silver badges11 bronze badges 1
  • 1 Possible duplicate of Best practices for detecting offline state in a service worker – Riad ZT Commented Jun 25, 2018 at 8:29
Add a ment  | 

2 Answers 2

Reset to default 7

You can make use of the navigator.onLine. It returns true for online and false otherwise.

window.addEventListener('DOMContentLoaded', function() {
  var status = document.getElementById("status");

  function updateOnlineStatus(event) {
    var condition = navigator.onLine ? "online" : "offline";

    status.className = condition;
    status.innerHTML = condition.toUpperCase();
  }
  window.addEventListener('online',  updateOnlineStatus);
  window.addEventListener('offline', updateOnlineStatus);
});
#status {
  width: 100%;
  font: bold 1em sans-serif;
  color: #FFF;
  padding: 0.5em;
}

.online {
  background: green;
}

.offline {
  background: red;
}
<div id="status" class="online"> ONLINE </div>
<p> Toggle your network connection to see the effect </p>

Read more on MDN

you can use navigator.onLine which will return true or false according to the network connectivity, you can take a look at it Best practices for detecting offline state in a service worker might help.

发布评论

评论列表(0)

  1. 暂无评论