postman模擬post請求的四種請求體
目錄
- 1.application/x-www-form-urlencoded
- 2.multipart/form-data
- 3. raw
- 4.binary
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、on、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.www.cppcns.comexecute(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;http://www.cppcns.com
}
public static String testParam(String url) {
String result = null;
CloseableHttpClient httpclient = HttpClients.createDefault();
httpclient = HttpsHelper.newHttpsCloseableClient();
HttpPost httpPost = new HttpPost(url);
List<NameValuePairAxfObc> 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請求內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!