RxJS 5中Subject和AnonymousSubject之间有什么区别?
我搜索过互联网但没有找到任何关于AnonymousSubject的信息.
我在网上找到了一个例子
Subject.create(observer, observable);
查看rxjs源代码,我看到了这个创建和AnonymousSubject.
你能想出一个好用的AnonymousSubject的例子吗?
解决方法:
AnonymousSubject不会将自己订阅到源Observable.它只是连接源和目的地.
我不知道AnonymousSubject的典型用例是什么样的,但它在Subject.lift()
中使用.
另见:RxJs Subject.subscribe method not working as expected