私はPWAの作成を始めたばかりです。
私は Workbox を使用して、非常に基本的なニュース取得アプリである最初の PWA を作成しています。
ニュース データとワークボックスに newsapi.org を使用してサービス ワーカーを作成しています。
画像を除いて、必要に応じてすべてをオフラインで機能させることができました。
画像は適切にキャッシュされていますが、オフライン モードが有効になっていると表示されません。
ここに私のapp.jsファイルがあります:
const main = document.querySelector('main');
const sourceSelector = document.querySelector('#sourceSelector');
const defaultSource = 'the-washington-post';
window.addEventListener('load', e =>{
updateNews();
console.log('app file');
updateSources();
sourceSelector.value = defaultSource;
sourceSelector.addEventListener('change', e=>{
updateNews(e.target.value);
})
if('serviceWorker' in navigator){
try {
navigator.serviceWorker.register('sw.js');
console.log('SW Registered');
} catch (e) {
console.log('SW Registration failed');
}
}
});
async function updateSources(){
const res = await fetch(`https://newsapi.org/v2/sources?apiKey=MyApiKey
`);
const json = await res.json();
sourceSelector.innerHTML = json.sources.map(src => `<option value = "${src.id}">${src.name}</option>`).join('\n');
console.log(json);
}
async function updateNews(source = defaultSource){
const res= await fetch(`https://newsapi.org/v2/top-headlines? sources=${source}&apiKey=MyApiKey`);
const json = await res.json();
main.innerHTML = json.articles.map(createArticle).join('\n');
};
function createArticle(article){
return `
<div class="article">
<a href="${article.url}">
<h2>${article.title}</h2>
<img src="${article.urlToImage}">
<p>${article.description}</p>
</a>
</div>
`;
}
そして、これが私のService Workerファイル(sw.js)です:
importScripts('https://storage.googleapis.com/workbox- cdn/releases/3.0.0/workbox-sw.js');
const staticAssets = [
'./',
'./style.css',
'./app.js',
'./fallback.json',
];
workbox.precaching.precacheAndRoute(staticAssets
);
workbox.routing.registerRoute(
new RegExp('.*\.js'),
workbox.strategies.networkFirst({
})
);
workbox.routing.registerRoute(
new RegExp ('https://newsapi.org/'),
workbox.strategies.networkFirst({
})
);
workbox.routing.registerRoute(
/.*\.(png|jpg|jpeg|svg|gif)/,
workbox.strategies.staleWhileRevalidate({
cacheName: 'news-images',
plugins: [
new workbox.expiration.Plugin({
maxEntries: 50,
maxAgeSeconds: 12 * 60 * 60,
})
],
})
);
問題のスクリーンショット (ご覧のとおり、画像のキャッシュは適切に取り込まれていますが、オフライン時に表示できないようです)
これを修正する方法についての助けをいただければ幸いです。