首页 > Web开发 > 详细

[RxJS 6] The Retry RxJs Error Handling Strategy

时间:2018-07-08 10:09:02      阅读:198      评论:0      收藏:0      [点我收藏+]

When we want to handle error observable in RxJS v6+, we can use ‘retryWhen‘ and ‘delayWhen‘:

const courses$: Observable<Counse[]> = http$
    .pipe(
        tap(() => console.log("HTTP request")),
        map(res => Object.values(res[‘payload‘])),
        shareReplay(), // avoid using async pipe multi times causing multi network request
        retryWhen(errors => errors.pipe(
           delayWhen(() => timer(2000)) // wait 2s after the error observable happens    
        ))
)

 

[RxJS 6] The Retry RxJs Error Handling Strategy

原文:https://www.cnblogs.com/Answer1215/p/9278994.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!