所以我有一个http GET请求:http://localhost:8080/api/toptracks
。
我安装了koa-cors包并将cors设置为:
app.use(cors({
origin: 'http://localhost:3000'
}));
axios调用只是一个简单的axios.get(url).then(..)
但它只返回Chrome浏览器而不是Firefox,网络标签显示DNS resolution
,我清除了缓存。
有没有人有线索如何解决?
答案 0 :(得分:0)
管理以解决问题:
axios({
method: 'GET',
url: 'http://localhost:8080/api/track/toptracks?limit=250',
headers: {
'Content-Type': 'application/json'
},
json: true
})