React JS中的Erro CORS策略

时间:2019-01-09 17:11:55

标签: reactjs cors axios

我正在尝试对此API(来自电子邮件站点的API)进行GET请求,但我在CORS政策方面遇到问题。

我对失眠做了一些测试,并且能够使用GET和POST。

我在前端使用React JS,并使用Axios进行请求,它遵循以下错误的代码和链接图像。

async componentDidMount (){

const config = {
  headers: {
    'Content-Type': 'application/json',
    'x-auth-token': 'mytoken',
  }
};
axios.get('https://api.smtplw.com.br/v1/messages/4', config)
  .then(function (response) {
    // handle success
    console.log(response);
  })
  .catch(function (error) {
    // handle error
    console.log(error);
  })
  .then(function () {
    // always executed
  });;

}

enter image description here

0 个答案:

没有答案