axios请求报错405

我想用axios做一个请求,但是报错如下,No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8085' is therefore not allowed access. The response had HTTP status code 405.
然后我用jquery的方法请求了一次,没有报错,不明白axios请求为啥报错,因为是基于vue环境,所以也是第一次尝试用axios请求,希望路过的各位大神指点一下

    axios({
      method: 'get',
      url: 'http://123.55.94.183:8091/apifit/transfer/transfer',
      responseType: 'json',
      data: PostJson({
                    fitUserId: 'belle',
                    reqTransfer: '/apifit/medal/getUser'
      })
    })
    .then(function (response) {
      console.log(response)
    })
    .catch(function (error) {
      console.log(error)
    })
阅读 6.8k
2 个回答

405是请求类型错误吧,你看看是不是后端不支持get方式的请求

No 'Access-Control-Allow-Origin' header is present on the requested resource.

跨域请求错误,要后端将响应头Access-Control-Allow-Origin设置成*就好了

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题