admin管理员组文章数量:1344939
What is going on with the concat
call? I know that if I replace concat
by merge
the code works correctly and the output is foo
bar
qux
quux
. I've read about Hot and Cold observables, and I know that for hot observables that might happen if the values are generated before the subscription, but my observables down there are cold, so I guess that's not the case.
const Rx = require('rxjs');
const observable1 = Rx.Observable.create((observer) => {
observer.next('foo');
observer.next('bar');
return observer;
});
const observable2 = Rx.Observable.create((observer) => {
observer.next('qux');
observer.next('quux');
return observer;
});
const result1 = observable1.concat(observable2);
result1.subscribe((x) => console.log(x));
// outputs
foo
bar
What is going on with the concat
call? I know that if I replace concat
by merge
the code works correctly and the output is foo
bar
qux
quux
. I've read about Hot and Cold observables, and I know that for hot observables that might happen if the values are generated before the subscription, but my observables down there are cold, so I guess that's not the case.
const Rx = require('rxjs');
const observable1 = Rx.Observable.create((observer) => {
observer.next('foo');
observer.next('bar');
return observer;
});
const observable2 = Rx.Observable.create((observer) => {
observer.next('qux');
observer.next('quux');
return observer;
});
const result1 = observable1.concat(observable2);
result1.subscribe((x) => console.log(x));
// outputs
foo
bar
https://codepen.io/thiagoh/pen/WZyrRL
Share asked Oct 11, 2017 at 2:31 thiagohthiagoh 7,4188 gold badges54 silver badges78 bronze badges1 Answer
Reset to default 11I believe observer1 needs to plete()
, then concat can start outputting observer2.
Ammended CodePen
本文标签: javascriptRxJS observable concat not workingStack Overflow
版权声明:本文标题:javascript - RxJS observable concat not working - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743773199a2536499.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论