-
GET and Post method 개념 차이 in HTTPfront개발 2022. 1. 18. 15:38728x90반응형
What is HTTP?
HTTP is a set of protocols designed to enable communication between clients and servers. It works as a request-response protocol between a client and server.
A web browser may be the client, and an application on a computer that hosts a website may be the server.So, to request a response from the server, there are mainly two methods:
- GET : to request data from the server.
- POST : to submit data to be processed to the server.
Here is a simple diagram which explains the basic concept of GET and POST methods.
728x90반응형'front개발' 카테고리의 다른 글
JSFiddle이란, 사용법 (퍼옴) (0) 2022.08.29 (퍼옴) 적응형 웹 디자인 (0) 2022.05.27 javascript - 자바 스크립트에서 오래 실행되는 함수를 분해하지만 성능을 유지하는 방법 (0) 2021.11.16 브라우저 렌더링과 최적화 (0) 2021.06.29 (펌글) 리액티브 프로그래밍 개념 (0) 2021.04.29