postman模拟post请求的四种请求体
1.application/x-www-form-urlencoded
浏览器的原生 表单,其中ajax也是用这种方式提交的,主要是key-value 键值对的形式。一般的请求方式如下图所示:
post http/1.1 host: test.app.com content-type: application/x-www-form-urlencoded cache-control: no-cache postman-token: e00dbaf5-15e8-3667-6fc5-48ee3cc89758 key1=value1&key2=value2
post中(application/x-www-form-urlencoded)请求方式截图,主要在key中传入接口中定义的变量,value 中传入值就可以进行测试接口
2.multipart/form-data
它会将表单的数据处理为一条消息,以标签为单元,用分隔符分开。既可以上传键值对,也可以上传文件。
由于有boundary隔离,所以multipart/form-data既可以上传文件,也可以上传键值对,它采用了键值对的方式,所以可以上传多个文件,在springmvc中可以使用multiparthttpservletrequest接收通过api根据"name"获取不同的键值,也可以通过multipartfile数组接收多个文件。
post http/1.1 host: test.app.com cache-control: no-cache postman-token: 59227787-c438-361d-fbe1-75feeb78047e content-type: multipart/form-data; boundary=----webkitformboundary7ma4ywxktrzu0gw ------webkitformboundary7ma4ywxktrzu0gw content-disposition: form-data; name="filekey"; filename="" content-type: ------webkitformboundary7ma4ywxktrzu0gw content-disposition: form-data; name="textkey" tttttt ------webkitformboundary7ma4ywxktrzu0gw--
psot同时上传文件和键值对数据
3. raw
可以上传任意格式的文本,可以上传text、json、xml、html等controller接口可以通过@requestbody 来修饰,传入数据就是json格式
注意: 在使用raw 方式,如果在postman再测试的时候需要在headers中添加一个key-value (content-type: application/json 或者对应的格式)
4.binary
相当于content-type:application/octet-stream,从字面意思得知,只可以上传二进制数据,通常用来上传文件,由于没有键值,所以,一次只能上传一个文件。
post http/1.1 host: test.app.com cache-control: no-cache postman-token: 5ad66f08-6faa-aba0-744a-ca958b1a0fc2 undefined
提醒:
multipart/form-data与x-www-form-urlencoded区别:
html中的form 表单有两种:application/x-www-form-urlencoded和multipart/form-data。application/x-www-form-urlencoded是默认的mime内容编码类型,它在传输比较大的二进制或者文本数据时效率极低。
mime:
简单说,mime类型就是设定某种扩展名的文件用一种应用程序来打开的方式类型。服务器会将它们发送的多媒体数据的类型告诉浏览器,而通知手段就是说明该多媒体数据的mime类型,服务器将 mime标志符放入传送的数据中来告诉浏览器使用哪种插件读取相关文件。
multipart/form-data:既可以上传文件等二进制数据,也可以上传表单键值对,只是最后会转化为一条信息。当设置multipart/form-data,http会忽略 contenttype 属性。
x-www-form-urlencoded:只能上传键值对,不能用于文件上传。不同的field是用&区分开的。这两个类均实现了httpentity接口,使用如下:
public static string testupload(string url) { string result = null; closeablehttpclient httpclient = httpclients.createdefault(); httppost httppost = new httppost(url); try { filebody bin = new filebody(new file("f:\\image\\sendpix0.jpg")); stringbody comment = new stringbody("a binary file of some kind", contenttype.text_plain); httpentity reqentity = multipartentitybuilder.create().addpart("bin", bin).addpart("comment", comment) .build(); httppost.setentity(reqentity); system.out.println("executing request " + httppost.getrequestline()); closeablehttpresponse response = httpclient.execute(httppost); try { int statuscode = response.getstatusline().getstatuscode(); if (statuscode == httpstatus.sc_ok) { result = entityutils.tostring(response.getentity(), "utf-8"); } } finally { response.close(); httpclient.close(); } } catch (clientprotocolexception e) { e.printstacktrace(); } catch (ioexception e) { e.printstacktrace(); } finally { try { httpclient.close(); } catch (ioexception e) { e.printstacktrace(); } } return result; } public static string testparam(string url) { string result = null; closeablehttpclient httpclient = httpclients.createdefault(); httpclient = httpshelper.newhttpscloseableclient(); httppost httppost = new httppost(url); list<namevaluepair> params = new arraylist<namevaluepair>(); params.add(new basicnamevaluepair("key1", "value1")); params.add(new basicnamevaluepair("key2", "value2")); try { httppost.setentity(new urlencodedformentity(params)); httppost.setconfig(requestconfig); closeablehttpresponse httpresp = httpclient.execute(httppost); try { int statuscode = httpresp.getstatusline().getstatuscode(); if (statuscode == httpstatus.sc_ok) { result = entityutils.tostring(httpresp.getentity(), "utf-8"); } } finally { httpresp.close(); httpclient.close(); } } catch (unsupportedencodingexception e) { e.printstacktrace(); } catch (clientprotocolexception e) { e.printstacktrace(); } catch (ioexception e) { e.printstacktrace(); } finally { try { httpclient.close(); } catch (ioexception e) { e.printstacktrace(); } } return result; }
到此这篇关于postman模拟post请求的四种请求体的文章就介绍到这了,更多相关postman post请求内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
下一篇: vue中实现页面刷新以及局部刷新的方法
推荐阅读
-
Postman模拟发送带token的请求方法
-
PostMan post请求发送Json数据的方法
-
postman测试post请求参数为json类型的实例讲解
-
C#模拟http 发送post或get请求的简单实例
-
php自定义类fsocket模拟post或get请求的方法
-
Linux下模拟http的get/post请求(curl or wget)详解
-
postman的安装与使用方法(模拟Get和Post请求)
-
python利用requests库模拟post请求时json的使用
-
Angularjs中$http以post请求通过消息体传递参数的实现方法
-
求帮忙修改个php curl模拟post请求内容后并下载文件的解决思路