在Angular(8)应用程序中,我想添加一个自定义的脱机页面(只是一个普通的简单html文件开始)。
我已经将我的应用设置为PWA(使用@angular/pwa
并进行了所有配置,以使其至少在联机时能够平稳运行)。
但是,我很难为PWA用户提供更新。因此,经过数小时的尝试和错误,我决定从index.html
中排除ngsw-config.json
。当然,这具有index.html
每次都加载的效果(还不错,因为它很小)。如果有任何更新,index.html
链接到不同的JS文件,这些文件将立即加载。因此,正如我之前说过的那样,PWA的工作方式与我希望的一样。
现在,我想在用户启动PWA脱机时显示offline.html
。因此,我将offline.html
添加到了ngsw-config.json
,并且创建了一个包括官方ngsw-worker.js
的自定义Service Worker:
importScripts('./ngsw-worker.js');
我还使用了这个定制服务工作者,而不是正式的服务工作者:
ServiceWorkerModule.register('./custom-worker.js', { enabled: true, registrationStrategy: registrationStrategy })
到目前为止,一切仍然按预期进行。行为就像以前一样。现在,我想将脱机行为包含在我的自定义工作程序中:
importScripts('./ngsw-worker.js');
self.addEventListener('fetch', function(event) {
return event.respondWith(
caches.match(event.request)
.then(function(response) {
let requestToCache = event.request.clone();
return fetch(requestToCache).then().catch(error => {
// Check if the user is offline first and is trying to navigate to a web page
if (event.request.method === 'GET' && event.request.headers.get('accept').includes('text/html')) {
// Return the offline page
return caches.match("offline.html");
}
});
})
);
});
此脚本来自:https://stackoverflow.com/a/56738140/4653997
不幸的是,这部分根本不起作用。现在,我几乎陷入了困境。我不知道下一步该怎么做。
我认为无论index.html
是否可以加载,服务人员都会被执行。
任何帮助将不胜感激。
答案 0 :(得分:1)
我已经开始工作了!
最后,它是一个相对简单的fetch
事件监听器,我必须添加到我的自定义服务工作者中:
// listen to every fetch event
self.addEventListener('fetch', function (event) {
const request = event.request;
// filter for html document fetches (should only result in one single fetch) --> index.html
if (request.method === "GET" && request.destination === "document") {
// only intercept if there was a problem fetching index.html
event.respondWith(
fetch(request).catch(function (error) {
console.error("[onfetch] Failed. Serving cached offline fallback", error);
// return offline page from cache instead
return caches.match("/assets/offline.html");
}));
}
});
// use all the magic of the Angular Service Worker
importScripts('./ngsw-worker.js');
答案 1 :(得分:0)
index.html和.js将与服务工作者一起缓存。 @ angular / pwa会为您做到这一点,因此即使离线也可以将其初始化为angular。您可以利用该优势在启动应用程序之前检查用户是否在线,从而可以使用APP_INITIALIZER。
将在应用程序初始化上调用的第一个注册函数,如下所示:
import { NgModule, APP_INITIALIZER } from '@angular/core';
import { AppLoadService } from './app-load.service';
export function init_app(appLoadService: AppLoadService) {
return () => appLoadService.initializeApp();
}
@NgModule({
imports: [HttpClientModule],
providers: [
AppLoadService,
{ provide: APP_INITIALIZER, useFactory: init_app, deps: [AppLoadService], multi: true },
]
})
此服务是最初被调用的服务,将包含响应应用程序init的方法。我只是在此处添加了window.location.href作为示例,但是如果它检查浏览器是否在线,则可以执行任何操作。
export class AppLoadModule { }
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
@Injectable()
export class AppLoadService {
constructor(private httpClient: HttpClient) { }
initializeApp(): Promise<any> {
return new Promise((resolve, reject) => {
if (!window.navigator.onLine) {
window.location.href = offlineURL; // this would probably be something like 'yourURL/assets/offline-page.html'
}
resolve();
});
}
}
请注意,您仍然需要在资源ng-sw.config中拥有离线页面,以便在sw缓存它时可以访问它
"resources": {
"files": [
...
"/assets/offline-page.html"
],