Jmeter-http请求content-type

本博客转载自:http://www.cnblogs.com/dinghanhua/p/5646435.html
本文讲三种content-type以及在Jmeter中对应的参数输入方式。content-type:在Request Headers里,告诉服务器我们发送的请求信息是哪种格式的。

第一部分:目前工作中涉及到的content-type 有三种:

1. content-type:application/x-www-form-urlencoded

默认的。如果不指定content-type,默认使用此格式。

参数格式:key1=value1&key2=value2

2. content-type:application/json

参数为json格式

{

“key1”:“value1”,

“key2”:“value2”

}

3. content-type:multipart/form-data

上传文件时用这种格式

发送的请求示例:
Jmeter-http请求content-type_第1张图片

第二部分 不同的content-type如何输入参数

1.content-type:application/x-www-form-urlencoded

参数可以在Parameters或Body Data里输入,格式不同,如下图所示。

这两个参数输入的tab页只能使用一个,某一个有数据后不能切换到另一个。

Parameters:
Jmeter-http请求content-type_第2张图片
Body Data:
Jmeter-http请求content-type_第3张图片

2.content-type:application/json

2.1 首先添加信息头管理。http请求上点击右键-添加-配置元件- HTTP信息头管理器
Jmeter-http请求content-type_第4张图片
2.2 信息头编辑页面,点击添加,输入content-type application/json
Jmeter-http请求content-type_第5张图片
2.3 在http请求,Body Data中输入json格式的参数
Jmeter-http请求content-type_第6张图片

3 content-type:multipart/form-data

在http请求编辑页面,选中Use multipart/form-data for POST

Parameters中输入除了上传的文件以外的参数:参数名和参数值

Files Upload中上传文件,参数名和MIME类型
Jmeter-http请求content-type_第7张图片
Jmeter-http请求content-type_第8张图片
上传文件如果不成功,修改Implementation为java试一下。Jmeter-http请求content-type_第9张图片

你可能感兴趣的:(接口测试,Jmeter接口测试,content-type)