Relative Content

Tag Archive for angularobservable

How to use an Observable of an Observable object in Angular 18

I have a beginner Angular project and I want to load a component where I get the ID of a record from the routerparams and from that I do an api call to my backend to get the data.
The issue is that my return is Observable<Observable>
and I’m not sure how to use this to get the data from the Product with that ID.