标签: angular upgrade typescript-decorator
自定义装饰器可在Angular 8中使用,但升级后无法触发
@AutoUnsubscribe() export class .... ngOnDestroy() : void {}
现在要使其正常工作,我必须在需要取消订阅的每个组件中添加
ngOnDestroy() : void { this.subscriber.unsubscribe(); }