this.companyData$ = Observable.combineLatest(
this.visibleStatusTypes$,
this.queryParamsStream$
).map(...)
只有在我这样做时才会触发:
this.companyData$.subscribe(() => console...)
this.companyData$.subscribe(() => console...)
订阅一次无效!有什么想法吗?
答案 0 :(得分:0)
事实证明,这是因为this.visibleStatusTypes$
是Subject
,并将其更改为BehaviorSubject
固定的所有内容。