技术社区
使用axios进行post请求,但springboot后台报错
Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Invalid mime type "application/x-www-form-urlencoded, application/json;charset=UTF-8": Invalid token character ',' in token "x-www-form-urlencoded, application/json"]
而我自己在vue的main.js中写了
axios.defaults.headers.post['Content-type'] = 'application/json;charset=UTF-8';
但网页进行请求就变成了
Content-Type:application/x-www-form-urlencoded, application/json;charset=UTF-8
我只需要application/json;charset=UTF-8就够了,前边那句不知道是哪里出来的。
新手上路,绊绊磕磕,请求帮忙。
回复列表
-
0082020-02-13`Content-Type` 注意大小写,貌似一点都不能错,试试 axios.defaults.headers.post['Content-Type'] = 'application/json;charset=UTF-8';