来自不同管道的RxJs globalState

时间:2019-09-11 14:36:28

标签: rxjs

我需要具有不同的管道/分支链,才能修改一个全局状态。

在分支机构内部时,如何避免冒泡全局状态更改事件?

如何改善这种惯用的RxJS方法

const globalState = {}

const br_one_step1$ = globalStateChange$.map(modGlobState_br_one_step1)
const br_one_step2$ = br_one_step1$.map(modGlobState_br_one_step2)
const br_one_step3$ = br_one_step2$.map(modGlobState_br_one_step3)
br_one_step3$.subscribe()

const br_two_step1$ = globalStateChange$.map(modGlobState_br_two_step1)
const br_two_step2$ = br_two_step1$.map(modGlobState_br_two_step2)
const br_two_step3$ = br_two_step2$.map(modGlobState_br_two_step3)
br_two_step3$.subscribe()```

0 个答案:

没有答案