码迷,mamicode.com
首页 > 其他好文 > 详细

request中的POST类型及展示

时间:2020-05-15 15:56:26      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:cal   image   remember   表单   webkit   position   info   input   post请求   

对于post请求,body里面的数据类型分为四类,最常用的是第一种。

1、application/json;

  {"input1":"aaa","input2":"bbb","remember":false}

技术图片

 技术图片

 

  

2、application/x-www-form-urlencoded;(浏览器原生表单)

  input1=aaa&input2=bbb&remember=false

 技术图片

 

 

3、multipart/form-data; (表单格式)

  ------WebKitFormBoundaryrGKCBY7qhFd3TrwA
  Content-Disposition: form-data; name="text"
  title
  ------WebKitFormBoundaryrGKCBY7qhFd3TrwA
  Content-Disposition: form-data; name="file"; filename="chrome.png"
  Content-Type: image/png
  PNG ... content of chrome.png ...
  ------WebKitFormBoundaryrGKCBY7qhFd3TrwA--


4、text/xml格式

  <!--?xml version="1.0"?-->
  <methodcall>
  <methodname>examples.getStateName</methodname>
  <params>
  <param>
  <value><i4>41</i4></value>
  </params>
  </methodcall>

这种以标签对形式出现的即为xml格式报文。

技术图片

 

 技术图片

 

request中的POST类型及展示

标签:cal   image   remember   表单   webkit   position   info   input   post请求   

原文地址:https://www.cnblogs.com/liuyi1804/p/12894887.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!