我在反应中使用 axios 创建了一个 GET 请求,如下所示:
searchCity: function(){
return axios.get('https://autocomplete.wunderground.com/aq?query=lond' + '&format=JSON')
}
但是我遇到了错误:
https://autocomplete.wunderground.com/aq?query=lond&format=JSON. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8080' is therefore not allowed access.
即使这是一个公共 api,也不需要访问密钥或任何东西。是否有另一种方法可以从此 url 获取 JSON 数据?