Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported]

发布时间 2023-07-27 16:29:55作者: E-青稞

@RequestParam用来处理 Content-Type 为 application/x-www-form-urlencoded 编码的内容,Content-Type默认为该属性。

可以用于接收URL中的参数并捆绑到方法的参数中,也可以接受post请求体中的Content-Type 为 application/x-www-form-urlencoded的数据。(post比较常用的是json格式数据)

错误原因:@RequestParam 和@RequestBody使用不匹配会报编码错误