我按照有关Google开发者文档的方法使用TWA设置了PWA应用
我的assetlinks.json文件
private subscription: Subscription;
ngOnInit(): void {
this.subscription = this.http
.get('test')
.subscribe((x) => console.log(x));
}
ngOnDestroy(): void {
// Here you should also do a check if subscription exists because in most cases it won't
this.subscription.unsubscribe();
}