[SpringBoot]@RequestParam接收不到POST请求的数据
可能原因:
在前端发送请求时,设置了
header:{
'Content-Type':'application/json'
}
这会导致@RequestParam接收不到POST请求的数据。
正确的做法是,设置
header:{
'Content-Type':'application/x-www-form-urlencoded'
}
如果想继续使用 ‘Content-Type’:‘application/json’,只能使用**@RequestBody**来接收