请求报错Required String parameter 'xxx' is not present
程序员文章站
2022-07-15 13:14:08
...
关于ajax请求spring后台出现 Required String parameter ‘xx’ is not present异常,
如果前端传入的是json数据那么后端使用
@RequestBody HashMap<String, String> map
进行接收,然后再通过
map.get(“xx”)
获取对应的数据
如果前端传入的是正常表单数据,那么后端使用
@RequestParam("xx") String xx或者
@RequestParam(value="xx", required = false) String xx接收参数
需要注意的是,如果请求类型为delete并且参数类型不是json的话,不能使用通过表单类型提交,参数需要跟到请求url后面,并且后台使用@PathVariable
进行获取参数
推荐阅读
-
报错: required string parameter XXX is not present
-
请求报错Required String parameter 'xxx' is not present
-
Spring请求问题之MissingServletRequestParameterException: Required xxx parameter ‘xxx’ is not present
-
解决Required XXX parameter ‘XXX‘ is not present问题
-
Required String parameter 'XXX' is not present
-
400 Bad Request(Required String parameter ‘xxx‘ is not present)
-
Spring Boot解决Required String parameter xxx is not present类型异常
-
HTTP Status 400 - Required CommonsMultipartFile[] parameter 'XXX' is not present
-
Required Integer parameter ‘xxx‘ is not present
-
Required String parameter 'xxx' is not present