我的Axios Vue应用程序尝试发出HTTP请求,如下所示:
return axios.get('http://api-mywebsite.com/detail/2')
.then(response => {
return response.data
})
这是一个API调用。我的API不使用CORS。为什么会出现CORS错误?
错误消息如下:
CORS策略已阻止从来源“ http://api-mywebsite.com/detail/2”访问“ http://127.0.0.1:8080”处的XMLHttpRequest:请求的资源上没有“ Access-Control-Allow-Origin”标头。
我需要从前端允许它吗?