【发布时间】:2019-01-05 01:24:17
【问题描述】:
我有一个可能返回HTTP 202 的服务器调用。受this SO线程影响,我有以下几点:
this.http.get(url)
.pipe(
map(response => {
if (response.status === 202) {
throw response;
}
return response;
}),
retryWhen(errors => {
return errors.pipe(
delay(1000),
take(3),
concat(response => Observable.throw('Retries exceeded'))
);
}),
catchError(handleError)
);
在使用concat 时收到deprecated 警告。我知道新的concat 在rxjs 而不是rxjs/operator。
但是,在这里使用新的static concat 运算符的正确方法是什么?
找到以下from this site
import { concat } from 'rxjs/operators';
a$.pipe(concat(b$, c$));
// becomes
import { concat } from 'rxjs';
concat(a$, b$, c$);
我无法理解在我的示例代码中连接了哪些Observables?
更新 1
将代码更改为:
return concat(this.http.get(url)
.pipe(
map(response => {
if (response.status === 202) {
throw response;
}
return response;
}),
retryWhen(errors => {
return errors.pipe(
delay(1000),
take(3)
);
}),
catchError(handleError)
), response => Observable.throw('Retries exceeded'));
但这会导致:
core.js:1598 ERROR TypeError: You provided 'function (response) { return rxjs__WEBPACK_IMPORTED_MODULE_2__["Observable"].throw('Retries exceeded'); }' where a stream was expected. You can provide an Observable, Promise, Array, or Iterable.
at subscribeTo (subscribeTo.js:41)
at subscribeToResult (subscribeToResult.js:6)
at
【问题讨论】:
标签: angular rxjs angular-httpclient rxjs6