原因
关键点在@RequestParam注解
比如:
String test(@RequestParam("account") String acot){
testService.testA(acot);
return "lbwnb"
}
这个@RequestParam(“account”)代表需要获取到前端传来的参数里面必须需要有"account" ,且不能为空的。
解决方案
- 以上面的代码例子修改,在@RequestParam加入require=“flase”,表示"account"能为空
String test(@RequestParam(value="account",required = flase) String acot){
testService.testA(acot);
return "lbwnb"
}
- 或者让前端将该"account"参数传过来。
个人小总结
其实这个错误一眼就知道哪里错了,但是本人是因为前端传参数时竟然将参数的小写写成大写了,导致说参数找不到而报错,记录一下吧!!!