RxJS: How can I do an “if” with Observables?

情到浓时终转凉″ 提交于 2019-12-18 04:57:10

问题


Say I have two observables and one I want to listen on changes in one observable, if the other on matches a certain condition. I tried it with zip but it seems I will only be notified, if both observables change, but I want to be notified for every change on the one observable, if the condition of the other one is true.

What I tried:

var firstState = new Rx.BehaviorSubject(undefined);
var secondState = new Rx.BehaviorSubject(undefined);

Rx.Observable.zip(firstState, secondState, function (first, second) {
  return {
    first: first,
    second: second
  }
}).filter(function (value) {
  return value.first !== undefined;
}).subscribe(function (value) {
  // do something with value.second
}); 

I noticed there is an Rx.Observable.if, but I couldn't got it to work.


回答1:


Use pausable:

secondState
    .pausable(firstState.map(function (s) { return s !== undefined; }))
    .subscribe(function (second) {
        // only occurs when first is truthy
    });



回答2:


Zip literally means so. It zips up taking corresponding elements in two different sequence. What you are trying to achieve can be done in many different ways.

firstState.combineLatest(secondState, function(f, d) { 
    return f == 10 && d > 10;
}).filter(function(val) { return val })
  .subscribe(function(v) { console.log(v); });

firstState.onNext(10);
secondState.onNext(20);

This is one of the ways.



来源:https://stackoverflow.com/questions/28315026/rxjs-how-can-i-do-an-if-with-observables

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!