当谈到RxJS时,我仍然是一个菜鸟,但这里是我想要做的JSBin.
https://jsbin.com/wusalibiyu/1/edit?js,console
我有一个可观察的'a'(在我的情况下,它是当前的活动连接),每当连接重新连接时,它会发出一个新对象.这是一个可观察的,因为它可以重新发出新的价值.
我现在想要一个observable,只要在当前连接上执行一个动作就完成了.该操作通知它在完成后可观察时完成.这是b.
问题是当内部可观察者完成时,外部没有完成.如何使外部可观察完整...... 我应该在RxJS5中使用不同的运算符吗?
如果我正确理解你的要求,你可以使用materialize/ dematerializepair "提升"内部流(注意我重构以及我永无止境的战争的一部分让人们停止使用Observable#create).
JsBin(摘录如下)
function b(a) {
// Emit and complete after 100 millis
return Rx.Observable.timer(100)
// Ignore any values emitted
.ignoreElements()
// Emit the value on start
.startWith(a)
.do(() => console.log('creating observable'))
.finally(() => console.log('b done'));
}
var a$ = Rx.Observable.from(['a', 'b'])
.finally(() => console.log('a done'));
var result$ = a$.switchMap(function(a) {
console.log('switching map for a to b', a);
// This "materializes" the stream, essentially it maps complete -> next
return b(a).materialize();
})
// This does the opposite, and converts complete events back,
// but since we are now in the outer stream
// this results in the outer stream completing as well.
.dematerialize()
.share();
result$.subscribe(function(value) {
console.log('value', value);
}, function(e) {
console.error('e', e);
}, function() {
console.log('completed!');
})
result$.toPromise().then(function(data) {
console.log('this should trigger!?', data);
}, function(e) {
console.error('boom', e.toString());
});
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
2441 次 |
| 最近记录: |