我正在使用RxJs,我必须建立一个轮询机制来从服务器检索更新。
我需要每秒发出一次请求,解析更新,发出并记住它的ID,因为我需要它来请求下一包更新,例如getUpdate(lastId + 1)
。
第一部分很简单,所以我只使用interval
与mergeMap
let lastId = 0
const updates = Rx.Observable.interval(1000)
.map(() => lastId)
.mergeMap((offset) => getUpdates(offset + 1))
我正在收集这样的标识符:
updates.pluck('update_id').scan(Math.max, 0).subscribe(val => lastId = val)
但是这个解决方案并不是纯粹的反应,我正在寻找省略" global"的使用方法。变量
如何在仍然能够返回仅包含调用者更新的observable的情况下改进代码?
UPD。
getUpdates(id)的服务器响应如下所示:
[
{ update_id: 1, payload: { ... } },
{ update_id: 3, payload: { ... } },
{ update_id: 2, payload: { ... } }
]
它可以按任何顺序包含0到Infinity更新
答案 0 :(得分:4)
这样的东西?请注意,这是一个无限流,因为没有条件可以中止;你没有给一个。
// Just returns the ID as the update_id.
const fakeResponse = id => {
return [{ update_id: id }];
};
// Fakes the actual HTTP call with a network delay.
const getUpdates = id => Rx.Observable.of(null).delay(250).map(() => fakeResponse(id));
// Start with update_id = 0, then recursively call with the last
// returned ID incremented by 1.
// The actual emissions on this stream will be the full server responses.
const updates$ = getUpdates(0)
.expand(response => Rx.Observable.of(null)
.delay(1000)
.switchMap(() => {
const highestId = Math.max(...response.map(update => update.update_id));
return getUpdates(highestId + 1);
})
)
updates$.take(5).subscribe(console.log);
<script src="https://cdnjs.cloudflare.com/ajax/libs/rxjs/5.5.6/Rx.js"></script>
要定义流的终止,您可能希望最后挂钩switchMap
;使用response
的任何属性来有条件地返回Observable.empty()
,而不是再次调用getUpdates
。