一直在寻找解决此问题的方法:
Fetch API 无法加载https://api.wunderground.com/api/******/conditions/q/toronto。“Access-Control-Allow-Origin”标头的值“ http://www.wunderground.com ”不等于提供的来源。因此,不允许访问源“ http://localhost:3000 ”。让服务器发送带有有效值的标头,或者,如果不透明的响应满足您的需求,请将请求的模式设置为“no-cors”以获取禁用 CORS 的资源。
const apiKey = '******'
const apiUrl = 'https://api.wunderground.com/api/' + apiKey + '/conditions/q/'
var WeatherApi = {
get: function(query) {
return fetch(apiUrl + query).then(function(response) {
return response.json();
});
}
};
handleClick: function() {
WeatherApi.get(this.state.text).then(function(data) {
console.log(data);
}.bind(this));
},
那么如何让服务器发送具有有效值的标头?