.retryWhen(err =>
err
/** тут логика какая то но не суть**/
.delay(2000)
)
По идеи после ошибки должен ведь запрос заного отработать через 2 сек? rxHttpFetch
А у меня запрос не отрабатывает а просто занова ошибка приходит
https://github.com/Reactive-Extensions/RxJS/blob/master/doc/api/core/operators/retry.md * Returns an Observable that mirrors the source Observable with the exception of an error. If the source Observable * calls error, this method will emit the Throwable that caused the error to the Observable returned from notifier. * If that Observable calls complete or error then this method will call complete or error on the child * subscription. Otherwise this method will resubscribe to the source Observable. https://stackoverflow.com/questions/41005674/angular-2-http-retrywhen https://stackoverflow.com/questions/39928183/angular-2-rxjs-observable-retrywhen-filter-retry-on-error-status https://codingblast.com/rxjs-error-handling/
Обсуждают сегодня