45 lines
1.4 KiB
TypeScript
Raw Normal View History

/* Promise version */
// #docplaster
// #docregion
import {Injectable} from 'angular2/core';
import {Http, Response} from 'angular2/http';
2016-02-01 19:52:14 -08:00
import {Headers, RequestOptions} from 'angular2/http';
import {Hero} from './hero';
@Injectable()
export class HeroService {
constructor (private http: Http) {}
// URL to web api
private _heroesUrl = 'app/heroes.json';
// #docregion methods
getHeroes () {
return this.http.get(this._heroesUrl)
.toPromise()
2016-02-01 19:52:14 -08:00
.then(res => <Hero[]> res.json().data, this.handleError)
.then(data => { console.log(data); return data; }); // eyeball results in the console
}
addHero (name: string) : Promise<Hero> {
2016-02-01 19:52:14 -08:00
let body = JSON.stringify({ name });
let headers = new Headers({ 'Content-Type': 'application/json' });
let options = new RequestOptions({ headers: headers });
return this.http.post(this._heroesUrl, body, options)
.toPromise()
.then(res => <Hero> res.json().data)
.catch(this.handleError);
}
private handleError (error: any) {
// in a real world app, we may send the error to some remote logging infrastructure
// instead of just logging it to the console
console.error(error);
return Promise.reject(error.message || error.json().error || 'Server error');
}
// #enddocregion methods
}
// #enddocregion