我目前收到上述错误,我正在使用Axios向外部API发出GET请求.在阅读了Mozilla文档后,做了大量的研究并尝试了不同的选择,我仍然没有任何好转.
我已经将代码剥离回基础:
axios.get('URL.com', { headers: { Access-Control-Allow-Origin: * }, auth: { username: 'username', password: 'password' }, }) .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); });
我是否需要在标题中添加其他内容?
一切都通过Postman工作,所以一旦我能通过CORS问题,一切都会奏效.