只有订阅两次,Observable才有效

时间:2018-11-09 12:26:36

标签: angular rxjs observable

this.companyData$ = Observable.combineLatest(
    this.visibleStatusTypes$,
    this.queryParamsStream$
  ).map(...)

只有在我这样做时才会触发:

this.companyData$.subscribe(() => console...)
this.companyData$.subscribe(() => console...)

订阅一次无效!有什么想法吗?

1 个答案:

答案 0 :(得分:0)

事实证明,这是因为this.visibleStatusTypes$Subject,并将其更改为BehaviorSubject固定的所有内容。