我正在尝试获取一个Api,但是它一直告诉我网络出现错误,我找不到任何方法可以修复它。
const atlasApi = `Access-Control-Allow-Origin: https://atlas-obscura-api.herokuapp.com/api/atlas/destinations`
fetch(atlasApi).then(response => {
return response.json()
}).then(data => {
console.log(data)
})
答案 0 :(得分:1)
您的api网址似乎不正确,请尝试从atlasApi中删除Access-Control-Allow-Origin:。这样就可以了。