Query String Parameters, Form Data, Request Payload 의 차이 점

1097 단어 성장 의 길
Query String Parameters
GET 요청 을 시작 하면 인 자 는 url string 으로 전 달 됩 니 다.즉, 4. 567914 후의 문자열 은 요청 매개 변수 이 고 4. 567914 를 구분자 로 합 니 다.
다음 http 요청 메시지 헤더:
General
  Request URL: http://login?uname=dingding
  Request Method: GET

Query String Parameters
  uname=dingding

Form Data
POST 요청 을 할 때 content - type 이 지정 되 지 않 으 면 기본 content - type 은 application / x - www - form - urlencoded 입 니 다.즉, 매개 변 수 는 Form Data 형식 으로 전달 되 며 요청 url 에 나타 나 지 않 습 니 다.
다음 http 요청 헤더:
General
  Request URL: http://login
  Request Method: POST

Request Headers
  content-type: application/x-www-form-urlencoded; charset=UTF-8

Form Data
  uname=dingding

Request Payload
POST 요청 을 할 때 content - type 이 application / json 이면 매개 변 수 는 Request Payload 형식 으로 전 달 됩 니 다 (분명 한 데이터 형식 은 JSON). 요청 url 에 나타 나 지 않 습 니 다.
다음 http 요청 헤더:
General
  Request URL: http://login
  Request Method: POST

Request Headers
  content-type: application/json; charset=UTF-8

Request Payload
  uname=dingding

 
 
 

좋은 웹페이지 즐겨찾기