我正在尝试在http://rate-exchange.appspot.com/currency上使用该服务,但我得到的只是 Access-Control-Allow-Origin 错误。
了解这是一个服务器问题,并且http://rate-exchange.appspot.com/currency不是我的服务,我不知道如何解决这个问题。
使用这样的服务:
$.getJSON("http://rate-exchange.appspot.com/currency", { "from": Currency.From, "to": Currency.To }, function (result) {
if (!result.err) {
Currency.Rate = result.rate;
$("#footer-output").text("All sales in " + Currency.To + " including VAT");
}
else {
$("#footer-output").text("All sales in local currency including VAT");
}
});
现在尝试直接在我的浏览器中获取这些数据不是问题。有什么我可以做的,还是只能在服务器上修复?