HTTP통신
-
angular http 통신하기FrontEnd 2019. 8. 3. 17:22
안녕하세요 오늘은 angular로 http 통신하는 법을 알아보려고 합니다. 먼저 httpClientModule을 app.module.ts 파일에 import 해주세요 import { HttpClientModule} from '@angular/common/http'; ......... imports: [ HttpClientModule ], 문서에서 http get 은 이런 형태로 디자인 되어있네요 get(url: string, options: { headers?: HttpHeaders; observe: 'response'; params?: HttpParams; reportProgress?: boolean; responseType?: 'json'; withCredentials?: boolean; }): O..