gpt4 book ai didi

typescript - 使用 SubSink 而不是 Subscriptions 数组有什么意义

转载 作者:搜寻专家 更新时间:2023-10-30 21:25:42 24 4
gpt4 key购买 nike

我刚刚观看了 John Papa 的 ngConf 视频,他谈到 SubSink 作为取消订阅可观察对象的最佳实践。

我实际上是在使用 Subscriptions[],然后将订阅推送到其中,然后在 cmp destroy 处取消订阅。

他们是我错过的东西还是使用 SubSink 只是提高了可读性?

最佳答案

另一种不安装第三方库的方法是使用 .add() 方法对订阅进行分组

export class CustomerComponent implements OnInit, OnDestroy {
constructor(
private dataService: DataService
){}

private subs = new Subscription();

ngOnInit() {
this.subs.add(this.dataService.getCustomer().subscribe());
this.subs.add(this.dataService.getProducts().subscribe());
}

ngOnDestroy() {
this.subs.unsubscribe();
}
}

关于typescript - 使用 SubSink 而不是 Subscriptions 数组有什么意义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56215837/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com