Rx.Observable.prototype.onErrorResumeNext(second)
Continues an observable sequence that is terminated normally or by an exception with the next observable sequence or Promise.
参数
second
(Observable
|Promise
): Second observable sequence used to produce results after the first sequence terminates.
返回值
(Observable
): An observable sequence that concatenates the first and second sequence, even if the first sequence terminates exceptionally.