1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > 报错:不支持不支持的媒体类型 Unsupported Media Type

报错:不支持不支持的媒体类型 Unsupported Media Type

时间:2024-01-07 01:17:49

相关推荐

报错:不支持不支持的媒体类型 Unsupported Media Type

过程如下:

前端vue,后端springboot

前端通过post传以下的值:

结果报错415:

后台controller:

@PostMapping("add")@ApiOperation("添加")public JsonResponse add(@RequestBody InterfaceEarlyWarningEntity info) {interfaceEarlyWarningService.add(info);return ResponseUtils.setSuccess();}

一看之下觉得没毛病,然后我把@RequestBode注解去掉,试一下,结果不报错了,但是InterfaceEarlyWarningEntity实体类没有拿到前端传过来的值

@PostMapping("add")@ApiOperation("添加")public JsonResponse add(InterfaceEarlyWarningEntity info) {interfaceEarlyWarningService.add(info);return ResponseUtils.setSuccess();}

解决方法:

最后我用@ModelAttribute注解,这样不会报错了,后端也可以拿到值了

@PostMapping("add")@ApiOperation("添加")public JsonResponse add(@ModelAttribute InterfaceEarlyWarningEntity info) {interfaceEarlyWarningService.add(info);return ResponseUtils.setSuccess();}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。