有一个简单的Rxjs
流,我遇到了这种情况:
Rx.Observable
.fromArray([1,2,3,4,5,6])
// if commented from here
.windowWithCount(2, 1)
.selectMany(function(x) {
return x.toArray();
})
// to here .. the error bubbles up
.subscribe(function(x) {
console.log('x:',x)
throw new Error("AAHAAHHAHA!");
});
随着windowWithCount + selectMany
错误在内部被静默捕获并且不可捕获并且它也不会在控制台中通知
评论这两个块至少在控制台上通知错误
我不认为这是应该的,或者我错过了什么?
这里是jsbin