org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'enterpriseId' for method parameter type Long is not present

这个错可能是后端请求方式和对应的注解使用错误 也有可能是你前端的请求路径enterpriseId 这个写错

后端 

方法1. @RequestParam :required() default true; ===> 设置@RequestParam(value = "XXX", required = false)

方法2. 保证入参不为null

这边如果前端传过来有值 但是后端为null 是你没有接收到前端传过来的值 注意请求方式和注解

get请求 参数注解对应的是 @RequestParam

post请求 参数注解对应的是 @RequestBody

前端 请求参数和后端不一致

 

 

 

 


posted @ 2023-02-06 15:44  秃头少女and战战  阅读(2284)  评论(0编辑  收藏  举报