在 Angular 中,每次需要查询端点时,都需要调用以下代码:
this.service.getSomeData()
.pipe(takeUntil(this.onDestroy$))
.subscribe((message: any) => {
some code here;
}
takeUntil 是组件中的一个函数,用于在组件被销毁时取消订阅。
如何重构上面的代码,以便每次使用资源时都不需要键入所有这些内容?所以最后看起来像这样(或多或少?):
this.service.getSomeData(
(message: any) => {
some code here;
}
)
慕侠2389804
拉莫斯之舞
至尊宝的传说
相关分类