디케이
[html] form 작성 시 get과 post 차이점 본문
반응형
GET
<form action="http://locallhost:8021/usr/home/main" method="GET">
<input type="hidden" name="age" value="11">
<input type="submit" value="전송">
</form>
위와 같은 폼에서 전송으로 get처리 하면 아래와 같은 url생성
http://localhost:8021/usr/home/main?age=11
기본적인 HTTP Request(요청서)
--- Header ---
주소: http://localhost:8021/usr/home/main
쿼리 파라미터: age=11
--- Body ---
POST
<form action="http://locallhost:8021/usr/home/main" method="POST">
<input type="hidden" name="age" value="11">
<input type="submit" value="전송">
</form>
위와 같은 폼에서 전송으로 post처리 하면 아래와 같은 url생성
http://localhost:8021/usr/home/main?age=11
기본적인 HTTP Request(요청서)
--- Header ---
주소: http://localhost:8021/usr/home/main
쿼리 파라미터:
--- Body ---
age=11
정리
- get은 부가정보 쿼리파라미터가 Header에 생성 post는 Body에 생성
반응형
'HTML, CSS' 카테고리의 다른 글
이클립스 JSP, html 이용시 초기 셋팅 (0) | 2021.02.28 |
---|---|
[html] onclick시 location.href와 location.replace 차이 (0) | 2021.02.28 |
[jQuery] 자바스크립트 form 태그 submit (0) | 2021.02.23 |
[Javascript] 자바스크립트 (error) 오류 정리 (0) | 2021.02.23 |
[jQuery] html 요소 삽입 추가하기 - before, after, prepend, append (0) | 2021.02.23 |