I added the following console messages
getHeroes(): Promise<Hero[]> {
return this.http.get(this.heroesUrl)
.toPromise()
.then(response => { console.log("service response text " +
response.statusText);
console.log("service response data " +
response.json().data);
console.log("service response status " + response.status);
response.json().data as Hero[];}
.catch(this.handleError);
}
and the output was
service response text OK
service response dataundefined
service response status 200
returned heroes is undefined
>
>
--
You received this message because you are subscribed to the Google Groups
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.