问题描述:
-
在前后端传递参数时,如果为JSON,后端使用@RequestBody对象类型接受数据,会出现 500/400错误。
-
也就是说,在前后端发送数据时,出现JSON格式转换错误,从而访问不到后台接口。
-
不添加
@RequestBody
虽然可以成功访问,但是无法获取到对象数据 -
警告内容:
解决:
- 不要使用对象类型接受,统一使用 Map 接收数据,就不会出现上述情况
@RequestBody Map<String, Object> data
取代@RequestBody ArrayList<String> data
// http://localhost:5679/student/select4
// {"list":["计算机系","英语系"]}
@PostMapping("/select4")
public List<Student> select4(@RequestBody Map<String, Object> list) {
return studentService.select4(list);
}