在我的React
应用中,我尝试从我的heroku服务器发出GET
请求以获取用户列表:
https://blablabla.heroku.com/users
使用以下请求:
const sendSearch = fetch('/https://blablabla.heroku.com/users', {credentials: 'same-origin'})
function loadMyUsers(data) {
data.json().then((jsonData) => {
// console.log(jsonData)
})
}
sendSearch.then(loadMyUsers)}
但是我收到以下错误:
Fetch API cannot load https://blablabla.heroku.com/users.
Response to preflight request doesn't pass access control check: No
'Access-Control-Allow-Origin' header is present on the requested
resource. Origin 'http://localhost:8080' is therefore not allowed
access. If an opaque response serves your needs, set the request's mode
to 'no-cors' to fetch the resource with CORS disabled.
我尝试将我的Fetch方法更改为类似于:
的许多内容const sendSearch = fetch('https://blablabla.heroku.com/users',{
method: 'GET',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'mode': 'no-cors'
}
})
但问题仍然存在。
如何制作跨域请求?
答案 0 :(得分:1)
在您的heroku服务器上,您应该在回复标题中添加Access-Control-Allow-Origin: *
,或者如果您愿意,可以添加更具体的Access-Control-Allow-Origin: http://localhost:8080
。
在您的生产服务器上,您可能不需要此标题,除非您有充分的理由进行跨源请求。