In my ng2 service, i have a method that has 2 http.get calls. The function looks something like this:
getInfo(userId: number): any {
this.http
.get(apiUrl, options)
.map(response => response.json())
.subscribe(example => {
this.example.FirstName = example.FirstName;
this.example.LastName = example.LastName;
this.http
.get(`/api/${userId}`)
.map(response => response.json())
.subscribe(example => {
this.example.Street = example.Street;
this.example.City = example.City;
return this.example;
});
});
}
The only problem is that, in my component, i can't subscribe to this function, because it's not of type Observable<Example>
.
If I replace the type any for the function with Observable<Example>
I get :
A function whose declared type is neither 'void' nor 'any' must return a value
But I do return a value, after the response.
How can I do this without having two separate functions?
Yes, i did checked this answer: https://stackoverflow.com/a/36712707/3264998