为什么publishReplay(1).refCount()不重播后期订阅者的最后一个值?
a = new Rx.Subject(); b = a.publishReplay(1).refCount(); a.subscribe(function(x){console.log('timely subscriber:',x)}); a.next(1); b.subscribe(function(x){console.log('late subscriber:',x)});
<script src="http://reactivex.io/rxjs/user/script/0-Rx.js"></script>
预期产量:
timely subscribe: 1 late subscriber: 1
实际输出
timely subscriber: 1
解决方法
发生这种情况是因为在您调用a.next(1)时,publishReplay(1)尚未订阅其源Observable(在这种情况下为Subject a),因此内部ReplaySubject将不会收到值1.
在RxJS 5中,操作符之间的实际订阅发生在链的末尾,即本例中的b.subscribe(…).看到:
> https://github.com/ReactiveX/rxjs/blob/master/src/operator/multicast.ts#L63
> https://github.com/ReactiveX/rxjs/blob/master/src/Observable.ts#L96
在调用subscribe()之前,运算符由于lift()方法而被链接,该方法只接受运算符的实例并将其分配给新的Observable.您在上面的两个链接中可以看到的operator.call()方法稍后在订阅时调用.看到:
> https://github.com/ReactiveX/rxjs/blob/master/src/Observable.ts#L67