How would I use `do` as an RxJS lettable operator?

帅比萌擦擦* 提交于 2019-11-27 07:42:07

问题


RxJS 5.5 allows grabbing lettable operators and piping them like so:

import { ajax } from 'rxjs/observable/dom/ajax'
import { catchError, map, retry } from 'rxjs/operators'

ajax.getJSON('https://example.com/api/test')
.pipe(
    retry(3, 1000),
    map(fetchUserFulfilled),
    catchError(console.error)
)

How would I use the do operator between these commands?


回答1:


The do operator was renamed in RxJS 5.5 to tap because it collided with the JavaScript do keyword.

For more info see: https://github.com/ReactiveX/rxjs/blob/master/doc/pipeable-operators.md#pipeable-operators



来源:https://stackoverflow.com/questions/48025965/how-would-i-use-do-as-an-rxjs-lettable-operator

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!