0


Postman发送post请求时报400错误,Required request body is missing

项目形参位置存在@RequestBody注解,用Postman发送post请求时报400错误,Required request body is missing。
错误图示: 在这里插入图片描述

解决方法:
方法一: 项目中形参位置不使用@RequestBody,在Postman进行Post请求时,在请求路径后直接拼接参数。在这里插入图片描述
方法二: 项目中形参位置使用@RequestBody,在Postman进行Post请求时,在Postman的“Headers”中添加key:Content-Type,value:application/json。
在这里插入图片描述
在"Body"中选择"raw"添加json数据。
在这里插入图片描述


本文转载自: https://blog.csdn.net/weixin_40349799/article/details/129240805
版权归原作者 00西瓜00 所有, 如有侵权,请联系我们删除。

“Postman发送post请求时报400错误,Required request body is missing”的评论:

还没有评论