issues
search
Gunju-Ko
/
TIL
Today I Learn
0
stars
0
forks
source link
Content-Type
#28
Open
Gunju-Ko
opened
3 years ago
Gunju-Ko
commented
3 years ago
ContentType
request에 실어 보내는 데이터(body)의 타입 정보를 표현
Text타입
text/css
text/javascript
text/html
text/plain
File
multipart/form-data
Application
application/json
application/x-www-form-urlencoded
application/x-www-form-urlencoded
form에서 디폴트로 사용된다.
key-value&key=value...
형태로 전송된다.
W3에 잇는 문서에 따르면 반드시 인코딩 되어야한다. 대부분의 브라우저에서는 해당 content-type에 대해 자동으로 인코딩하도록 구현되어있다.
라이브러리 또는 프레임워크를 사용해서 HTTP 요청을 보낼 경우, 인코딩이 되는지 확인을 해야한다.
ContentType
application/x-www-form-urlencoded
key-value&key=value...
형태로 전송된다.