.HttpMediaTypeNotSupportedException: Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported]
时间: 2023-11-03 10:00:57 浏览: 163
HttpMediaTypeNotSupportedException是一个Spring框架的异常,它表示请求的媒体类型不被支持。根据提供的引用内容,可以看出这个异常出现的原因是后端接口不支持Content-Type为application/x-www-form-urlencoded;charset=UTF-8的请求头。这意味着后端接口无法处理该类型的请求数据。
相关问题
org.springframework.web.HttpMediaTypeNotSupportedException: Content type application/x-www-form-urlencoded;charset=UTF-8 not supported
这个错误通常是因为你的请求头中指定的 Content-Type 不被支持。常见的 Content-Type 包括 application/json、application/xml、application/x-www-form-urlencoded 等。可以尝试修改请求头中的 Content-Type 为被支持的类型,或者检查服务端是否支持当前请求的 Content-Type。具体处理方式需要根据具体情况进行调整。
org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported
这个错误提示是因为你的后端接口可能不支持 `application/x-www-form-urlencoded` 这种类型的 Content-Type。如果你使用的是 Spring Boot 框架的话,可以在后端接口的方法上添加 `@PostMapping(consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE)` 注解,这样就可以支持接收 `application/x-www-form-urlencoded` 类型的请求了。
另外,如果你使用 Postman 发送请求时选择的是 `x-www-form-urlencoded` 类型,那么它默认会使用 `application/x-www-form-urlencoded` 类型的 Content-Type。如果你要使用 `multipart/form-data` 类型的 Content-Type,可以选择 `form-data` 类型的请求体,这样就可以了。
阅读全文