Programming/JavaScript & TypeScript
[Angular] HttpClient Post 요청 시 body 값이 string일 때 {}만 보내지는 현상 제거
Bonita SY
2020. 12. 9. 18:59
728x90
기본 Content-Type이 application/json 형식이라서 {} 이렇게 된 듯
Content-Type을 application/x-www-form-urlencoded 로 변경하여 요청하였더니 서버에 body 값이 전달되기는 하나 강제 Object로 변경되는 것 같음..
그래서 그냥 string으로 보내지 않고 Object로 만들어서 보냄..
728x90