编程语言
首页 > 编程语言> > javascript – 我如何使用`do`作为RxJS可调运算符?

javascript – 我如何使用`do`作为RxJS可调运算符?

作者:互联网

RxJS 5.5允许抓取lettable运算符并像这样管道:

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

标签:javascript,rxjs,rxjs5,rxjs-lettable-operators
来源: https://codeday.me/bug/20190929/1832147.html