so I am using forkJoin to create multiple calls to the http service as in
let observables = [
this.http.get('/app/books.json').map((res:Response) => res.json()),
this.http.get('/app/movies.json').map((res:Response) => res.json())
];
Observable.forkJoin(observables).subscribe(
data => {
this.books = data[0]
this.movies = data[1]
},
err => console.error(err)
);
which works great, the only issue is that if a particular call fails, I get no info on why (I just get back a OK and status 200 on the err:Response object)
I do see the error in he console but not in the reponse back.
any way to retrieve it?
tx
Sean