Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supporte
时间: 2023-09-26 12:10:32 浏览: 174
loadrunner中处理url编码的方式,不支持中文
4星 · 用户满意度95%
引用中提到了一个错误信息:“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported”,这个错误通常出现在使用axios发起请求时,参数格式为x-www-form-urlencoded时。而引用中解释了这个错误的原因,即@RequestBody需要的参数格式是JSON类型,而x-www-form-urlencoded是以键值对拼接的形式。解决这个问题的方法有两种:
1. 后端解决:可以在后端对参数进行处理,将x-www-form-urlencoded格式的参数转换为JSON格式。这样@RequestBody就能正常接收参数了。
2. 前端解决:在封装axios时,可以修改参数类型为application/json;charset=UTF-8,即使用JSON格式的参数。可以通过修改axios的默认请求头来实现,例如:instance.defaults.headers.post['Content-Type'] = 'application/json;charset=UTF-8'。
因此,你可以根据具体的情况选择其中一种解决方法来解决这个问题。<em>1</em><em>2</em><em>3</em>
#### 引用[.reference_title]
- *1* [Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported](https://blog.csdn.net/weixin_40873693/article/details/127036277)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}} ] [.reference_item]
- *2* *3* [SpringBoot +Vue前后端分离项目报错:Content type ‘application/x-www-form-urlencoded;charset=UTF-8...](https://blog.csdn.net/qq_47188967/article/details/129685908)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}} ] [.reference_item]
[ .reference_list ]
阅读全文