gpt4 book ai didi

Angular - 管道函数中断执行流程

转载 作者:行者123 更新时间:2023-12-01 23:16:07 25 4
gpt4 key购买 nike

我有以下代码:

 subscriber.pipe(
switchMap(data => {
this.getData().pipe(
map(() => res),
catchError(error => {
return of(null);
})
);
}),
switchMap(data => {

})

).subscribe();

如果第一个 switchMap 出现错误,我将返回 of(null),因此下一个 switchMap 会将数据接收为 null。但是我喜欢停止执行,以防第一个 switchMap 进入 catchError block ,它不应该执行第二个 switchMap。有办法实现吗?

最佳答案

catchError 放在管道的末尾。

subscriber.pipe(
switchMap(data => {
...
}),
switchMap(data => {
...
}),
catchError(error => {
return of(null);
})
).subscribe(val => {
// val will be null if any error happened
})

关于Angular - 管道函数中断执行流程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68817467/

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