Skip to content
Advertisement

Angular Http Subscribe not working

Hi In my Angular Component, i have this code in one of my methods

JavaScript

In network tab in chrome dev inspector i saw that my get call returning result, but data is undefined.

Why?

Advertisement

Answer

The reason it was not working originally, is because you had this:

JavaScript

You are not returning a value. When you use the curly braces, you have to explicitly define a return value. All you had to do was:

JavaScript

Or remove the braces:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement