axios请求报错 415 unsupported media type

发布于 2022-09-13 00:49:23 字数 117 浏览 11 评论 0

本地跑的项目,请求接口报415,postman和线上都是没问题的。
axios请求设置content Type不生效,有个默认值content-type: application/json;
这个参数改不掉。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

執念 2022-09-20 00:49:23

话说前端现在都是处理json,所以Content-Type: application/json;charset=UTF-8完全没问题,我认为是接口的问题了,实在不行那就改header
get 请求:

axios.get('https://example.com/getSomething', {
 headers: {
   'Content-Type': 'xxxxxx'
 }
})

post请求。

axios.post('https://example.com/postSomething', {
 email: varEmail, //varEmail is a variable which holds the email
 password: varPassword
},
{
  headers: {
    'Content-Type': 'xxxxxx'
  }
})

也可以设置这样的请求:

 axios({
  method: 'post', //you can set what request you want to be
  url: 'https://example.com/request',
  data: {id: varID},
  headers: {
    'Content-Type': 'xxxxxx'
  }
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文