Do HTTP POST methods send data as a QueryString?

前端 未结 5 1468
执念已碎
执念已碎 2020-11-28 06:25

I\'d like to know if the POST method on HTTP sends data as a QueryString, or if it use a special structure to pass the data to the server.

In fact, when I analyze t

5条回答
  •  难免孤独
    2020-11-28 06:53

    GET will send the data as a querystring, but POST will not. Rather it will send it in the body of the request.

提交回复
热议问题