我使用angular2 observable模式发出http请求。 我试图有条件地重复http get:我想执行http get,直到满足条件:
http.get('url')
.map(res => {
// if the condition is met I should repeat the http get request
})
.subscribe()
有条件重复http get请求吗?
谢谢, 马可
答案 0 :(得分:7)
您可以使用expand运算符。这是一个例子:
let request$ = http.get('url');
request$.expand(value => {
return value !== 0 ? request$ : Rx.Observable.empty()
})
.map(res => {
//Do mapping here
})
.subscribe()