我正在构建一个 Angular2 应用程序,并且有两个BehaviourSubjects
我想在逻辑上组合成一个订阅。我正在发出两个 http 请求,并希望在它们都回来时触发一个事件。我在看forkJoin
vs combineLatest
。似乎 combineLatest 会在任何一个 behvaviorSubjects 更新时触发,而 forkJoin 只会在所有 behavoirSubjects 都更新后触发。这个对吗?必须有一个普遍接受的模式,不是吗?
编辑
这是我的 angular2 组件订阅的一个behaviorSubjects 示例:
export class CpmService {
public cpmSubject: BehaviorSubject<Cpm[]>;
constructor(private _http: Http) {
this.cpmSubject = new BehaviorSubject<Cpm[]>(new Array<Cpm>());
}
getCpm(id: number): void {
let params: URLSearchParams = new URLSearchParams();
params.set('Id', id.toString());
this._http.get('a/Url/Here', { search: params })
.map(response => <Cpm>response.json())
.subscribe(_cpm => {
this.cpmSubject.subscribe(cpmList => {
//double check we dont already have the cpm in the observable, if we dont have it, push it and call next to propigate new cpmlist everywheres
if (! (cpmList.filter((cpm: Cpm) => cpm.id === _cpm.id).length > 0) ) {
cpmList.push(_cpm);
this.cpmSubject.next(cpmList);
}
})
});
}
}
这是我的组件订阅的片段:
this._cpmService.cpmSubject.subscribe(cpmList => {
doSomeWork();
});
但是,我不想在单个订阅上触发 doSomeWork(),而是只想在 cpmSubject 和 fooSubject 触发时触发 doSomeWork()。