엉터리 개발 이야기/angular2+
[angular] angular-in-memory-web-api 모듈 설치
억삼이
2017. 10. 19. 00:09
반응형
npm install angular-in-memory-web-api --save
hero tutorial HTTP 예제
- getHeroes(): Promise<Hero[]> {
- return this.http.get(this.heroesUrl)
- .toPromise()
- .then(response => response.json().data as Hero[])
- .catch(this.handleError);
- }
response.json() 로 해서 heroes 가 출력됨.
반응형