jmeter的“消息体数据”⽆法点击,传参形式错误问题(post请
求等)
1、jmeter 的 “消息体数据” ⽆法点击:
解决:parameters跟body data的⽅式两者只可选择其⼀,当⼀种⽅式下有数据时就⽆法使⽤另外⼀种,必须清空。
2、运⾏失败,响应体提⽰报500 :
报错: {"status":500,"message":"Content type 'text/plain;charset=UTF-8' not supported"} 等类似情况,如下图
解决:⽹上了很多解决⽅法都不管⽤,其实解决起来很简单,添加请求信息头(content-type,application/json),如下图
PS: content-type根据需要的情况选择,不区分⼤⼩写;
content-type: application/json
3、参数 和消息体是两种形式,只能选择其中⼀种,使⽤后者能200,前者会报500
报错:{"status":500,"message":"JSON parse error: Unrecognized token 'username': was expecting ('true', 'false' or 'null'); nested exception is com.JsonParseException: Unrecognized token 'username': was expecting ('true', 'false' or 'null')\n at [Source: (PushbackInputStream); line: 1, column: 10]"}
解决:
1)原因解析:参数,⽤于get 或put请求;消息体⽤于post请求;parse error怎么解决
2)解决:把post请求的消息体参数放在 消息体⾥,见上⼀个常见问题的截图;
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论