PWAでユーザーのアクティビティを追跡したい。現在のURIで各サイトのインプレッションで私のサーバーにリクエストを送信することは可能ですか?サービスワーカーの現在のURL変更を追跡するにはどうすればよいですか?
シナリオ:ユーザーは、現在のURIでPWA→要求を開きます。 ユーザーは現在のURIでサブページ - >送信要求を開きます。
私の例サービス-worker.js:
var cacheName = 'weatherPWA-step-6-2';
var filesToCache = [
'/',
'/index.html',
'/scripts/app.js',
'/styles/inline.css',
'/images/clear.png',
'/images/cloudy-scattered-showers.png',
'/images/cloudy.png',
'/images/fog.png',
'/images/ic_add_white_24px.svg',
'/images/ic_refresh_white_24px.svg',
'/images/partly-cloudy.png',
'/images/rain.png',
'/images/scattered-showers.png',
'/images/sleet.png',
'/images/snow.png',
'/images/thunderstorm.png',
'/images/wind.png'
];
self.addEventListener('install', function(e) {
console.log('[ServiceWorker] Install');
e.waitUntil(
caches.open(cacheName).then(function(cache) {
console.log('[ServiceWorker] Caching app shell');
return cache.addAll(filesToCache);
})
);
});
self.addEventListener('activate', function(e) {
console.log('[ServiceWorker] Activate');
e.waitUntil(
caches.keys().then(function(keyList) {
return Promise.all(keyList.map(function(key) {
if (key !== cacheName) {
console.log('[ServiceWorker] Removing old cache', key);
return caches.delete(key);
}
}));
})
);
return self.clients.claim();
});
self.addEventListener('fetch', function(e) {
console.log('[ServiceWorker] Fetch', e.request.url);
console.log("Url", Client.url);
e.respondWith(
caches.match(e.request).then(function(response) {
return response || fetch(e.request);
})
);
});
あなたはウィンドウ上で 'hashchange'イベントを聞くだけで、何でもできます。 –
@JPrakash:ありがとう! – CYGS