我将如何使用 `do` 作为 RxJS 可出租运算符?

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

RxJS 5.5 允许获取可出租的运算符并像这样通过管道传递它们:

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)
)

如何在这些命令之间使用 do 运算符?

do 运算符在 RxJS 5.5 中被重命名为 tap 因为它与 JavaScript do 关键字冲突。

有关详细信息,请参阅:https://github.com/ReactiveX/rxjs/blob/master/doc/pipeable-operators.md#pipeable-operators