问题 I have a service worker. Here's the install event: self.addEventListener('install', function (event) { console.log('Installing Service Worker ...', event); return self.skipWaiting() .then(() => caches.open(CACHE_STATIC_NAME)) .then(function (cache) { return cache.addAll([ './file1.html', './file2.html' ]) }) }); For some reason, when I edit the service worker code and update the query parameter in the service worker file URL, it installs but does not activate (according to Chrome DevTools) —