Do HTTP POST methods send data as a QueryString?

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

    A POST request can include a query string, however normally it doesn't - a standard HTML form with a POST action will not normally include a query string for example.

提交回复
热议问题