I've tried to build an offline webpage with javascript serviceworkers. In my case there is my url: www.xxx.xx/home. If i call a page like www.xxx.xx/index.php, i can put index.php into the offline cache and it is offline available. But /home (internaly routed to index.php with mod_rewrite/apache2.4) is stored as key, but after iam offline it is not available.
var CACHE_NAME = 'cache-v1';
var urlsToCache = ['/', '/home', '/index.php'];
self.addEventListener('install', function(event) {
// Perform install steps
console.log("Install Cache");
event.waitUntil(
caches.open(CACHE_NAME).then(function(cache) {
console.log(urlsToCache.length + " files installed successfully");
return cache.addAll(urlsToCache);
})
);
});
With something like this, index.php could called offline but not xxx.xx/home. How should it look to cache a redirected/rewrited uri?
Something like:
this.addEventListener('activate', function(event) {
event.waitUntil(
caches.open(CACHE_NAME).then(function(cache) {
cache.keys().then(function(keys) {
keys.forEach(function(request, index, array) {
console.log(index + " Url: " + request.url + " follow: " + request.redirect + " mode: " + request.cache);
});
});
})
);
});
results in
serviceworker.js:37 0 Url: --httpsurl--/ follow: follow mode: undefined
serviceworker.js:37 1 Url: --httpsurl--/home follow: follow mode: undefined
serviceworker.js:37 2 Url: --httpsurl--/index.php follow: follow mode: undefined
Tested in Chrome and Firefox (latest version)
It seems that cache.addAll only caches the request body not the delivered content. It seems to work with cache.put as fallback in the fetch event listener. But a second problem appears: Firefox says "translated from german", "Damaged content, was violated the network protocol".
If you remove '/home' from static chache it works in chrome. But beware: If serviceworker activation is on /home a second click must appear to call the fetch event.