有沒有辦法通過鏈接將可觀察映射到另一個?我目前這樣做:包裹Rx JS通過鏈接可觀察
const myObserverable = fnThatReturnsObserverable();
return anotherFunctionThatReturnsObserverable(myObserverable);
有沒有辦法以鏈接的方式做到這一點?它here
return fnThatReturnsObserverable().someOperator(anotherFunctionThatReturnsObserverable)
你想鏈observ_ers_或observ_ables_? – Brandon
@Brandom,Observables,我會更新我的問題。 –
@MarcelM。我認爲'let()'是你正在尋找的東西,儘管它是未被定義的https://github.com/ReactiveX/rxjs/blob/master/src/operator/let.ts – martin