响应式编程的新手。我有一个流,一个滚动流,绑定到一个 domNode,然后还有一些其他流通过过滤器订阅:
var element = document.getElementById('scrollableElement');
var sourceStream = Rx.Observable.fromEvent(element, 'scroll').map(function(e){
return e.srcElement.scrollTop;
});
var inTheOneHundreds = sourceStream
.filter(function (x, idx, obs) {
return x >= 100 && x < 200;
});
var inTheTwoHundreds = sourceStream
.filter(function (x, idx, obs) {
return x >= 200 && x < 300;
});
inTheOneHundreds.subscribe(function(value){
console.log('one hundreds ' + value);
});
inTheTwoHundreds.subscribe(function(value){
console.log('two hundreds ' + value);
});
这输出如下:
one hundreds 193
one hundreds 196
one hundreds 199
two hundreds 201
two hundreds 204
你可以在这里看到:http: //jsbin.com/zedazapato/edit ?js,console,output
true
我希望在数百个更改(从到)时输出这些新流false
,而不是重复输出:
one hundreds 199
two hundreds 201
one hundreds 170
two hundreds 270
one hundreds 103
two hundreds 200
one hundreds 156
我尝试过使用Observable.distinctUntilChanged
,但它的行为似乎不像我预期的那样(它似乎输出相同的东西):http: //jsbin.com/gibefagiri/1/edit ?js,console,output
我哪里错了?