我使用Axios做了如下的api调用。
axios({
url: 'some url',
method: 'get'
})
.then(function(response) {
console.log(response);
})
.catch(function(response){
console.log(response);
});
在运行应用程序时我得到以下错误
XMLHttpRequest cannot load 'some url' No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:3003' is therefore not allowed access.
有人可以帮我解决问题吗?