我很高兴使用API并且我在HTTPS上有一个域试图访问另一个网站Here上的数据市场数据。我尝试过使用localhost并收到同样的错误。
我收到了错误
XMLHttpRequest无法加载https://api.blockchain.info/charts/market-price?format=json×pan=30days&_=1491089979914。 No' Access-Control-Allow-Origin'标头出现在请求的资源上。起源' null'因此不允许访问。
是否有一个简单的解决方案来访问这些数据?难道我需要一个API密钥吗?
//Get Data From JSON Source
jQuery.ajax({
url:'https://api.blockchain.info/charts/market-price?format=json×pan=30days',
dataType: 'json',
type: 'GET',
cache: false,
success: function(data){
console.log(data);
}
});