Angular Http post
서버에서 http post 요청을 하여 데이터를 받아오는 방법은 다음과 같습니다. 먼저 HttpClient와 HttpParams 모듈을 추가해준 후, var params = new HttpParams() .set('param1', 'value') .set('param2', 'value') this.http.post(url, params).toPromise() .then((res:any) => { // Example this.name = res.content[0].name; this.title = decodeURI(res.content[0].title) .replace(/%2[cC]/g, ",") .replace(/%3[aA]/g, ":"); ... }) .catch(err => { console.log(..