constructor(
private route: ActivatedRoute,
private http: Http
){
let paramObs = route.paramMap;
let dataObs = http.get('...');
}
Is there something similar to forkJointhat that works every time a parameter is changed? forkJoinonly works when all observables are complete.
I just need to avoid the callback hell, any alternative that matches is appreciated.
mtman source
share