我想使用默認值的主題發出值。startWith()返回主題
startWith("def")
是此方法。
subject = new Rx.Subject().startWith("def value");
不幸startWIth
回報Observable
,所以我不能使用onNext()
,這是我使用的首位主題的唯一原因。這個問題的解決方法是什麼?
subject.onNext("next val"); //cannot call onNext, it is not a function of Observable