Hi In my Angular Component, i have this code in one of my methods
JavaScript
x
8
1
this.http.get("http://localhost:8080/poeples")
2
.map(
3
resp => { resp = resp.json(); }
4
).subscribe(
5
(data) => { this.poeples = data; },
6
err => console.log(err)
7
);
8
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
1
2
1
resp => { resp = resp.json(); }
2
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
1
2
1
resp => { return resp.json(); }
2
Or remove the braces:
JavaScript
1
2
1
resp => resp.json()
2