Do HTTP POST methods send data as a QueryString?

前端 未结 5 1493
执念已碎
执念已碎 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:32

    If your post try to reach the following URL

    mypage.php?id=1

    you will have the POST data but also GET data.

提交回复
热议问题