Hi Norricorp

I don't think you need the data part, as that is not a part of your json 
structure.

try this:
 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());
                  console.log("service response status " + response.status);
                  return response.json();}
               .catch(this.handleError);
 }

I hope this helps you a bit,
Regards
Sander

-- 
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.

Reply via email to