[django] request.body와 Request.POST 요청 프로세스 차이

374 단어 Django
브라우저 ----------------- 서버
"GET url?a=1&b=2 http/1.1\r\user_agent:Google\r
contentType:urlencoded\r
\r
" "POST url http/1.1\r\user_agent:Google\r
contentType:urlencoded\r
\r
a=1&b=2" request.body: a=1&b=2 request.POST: if contentType:urlencoded: a=1&b=2----->{"a":1,"b":2}

좋은 웹페이지 즐겨찾기