我正在学习 CycleJS,我看到在使用 Cycle 的 HTTP 驱动程序时,我必须合并response stream stream
使用 RxJSswitch/mergeAll
才能到达流级别。但是当我尝试应用这些函数时,我收到了一个类型错误:(switch is not a function
在响应流上)。
const response$$ = sources.HTTP
.filter(response$ => response$.request.url === 'http://jsonplaceholder.typicode.com/users/1')
const response$ = response$$.switch()
如果我遗漏了什么,你能告诉我吗?