unable to post message to service worker because controller value is null
问题 I am trying to make a website available offline with the help of service workers to cache the files needed by the page. I am trying to give the user control over which images he wishes to cache. For this, I am using a function sendMessage function sendMessage(msg){ navigator.serviceWorker.controller.postMessage(msg); } where message contains data relative to the image that the user wishes to cache or un-cache. The service worker contains an event listener for the message event: this