表单提交
表单提交
当Content-Type
为 x-www-form-urlencoded
的时候,POST 的请求数据必须是表单的。
HTTP POST header: Content-Type: "x-www-form-urlencoded" body: key1=value1&key2=value2
何为表单参数,就是以x-www-form-urlencoded
为编码的数据参数,其中key1 和 key2就是参数。整个内容就是为 以& 分隔的参数列表。
HTTP POST header: Content-Type: "x-www-form-urlencoded" body: key1=value1 key2={"key3":value3, "key4": value4}
这个其实也是表单!他的形式是表单里面嵌套了一个JSON字符串,作为其中的一个参数。
本文来自博客园,作者:{咏南中间件},转载请注明原文链接:https://www.cnblogs.com/hnxxcxg/p/16319030.html