问题:
In an HTTP GET request, parameters are sent as a query string : 在HTTP GET请求中,参数作为查询字符串发送:
http://example.com/page?parameter=value&also=another
In an HTTP POST request, the parameters are not sent along with the URI. 在HTTP POST请求中,参数不会与URI一起发送。
Where are the values? 价值在哪里? In the request header? 在请求标头中? In the request body? 在请求正文中? What does it look like? 它是什么样子的?
解决方案:
参考一: https://stackoom.com/question/z3Qg/如何在HTTP-POST请求中发送参数参考二: https://oldbug.net/q/z3Qg/How-are-parameters-sent-in-an-HTTP-POST-request
来源:oschina
链接:https://my.oschina.net/u/3797416/blog/3219455