1.@RequestBody用于Post请求,接收json数据,例如:@RequestBody User user 例如:@RequestBody Map map 。不要用于Get请求。
2.@RequestParam用于Get请求,例如:@RequestParam Map map,不能用于Post请求。
3.记住如果是Get请求要传一个对象时,千万别用@RequestParam User user,接收不到的。直接User user这样接收就可以了。
1.@RequestBody用于Post请求,接收json数据,例如:@RequestBody User user 例如:@RequestBody Map map 。不要用于Get请求。
2.@RequestParam用于Get请求,例如:@RequestParam Map map,不能用于Post请求。
3.记住如果是Get请求要传一个对象时,千万别用@RequestParam User user,接收不到的。直接User user这样接收就可以了。