我正在尝试解析 Coinbase API 以拉回比特币的当前价格。这是我的代码:
var mtgoxAPI = "https://coinbase.com/api/v1/prices/spot_rate";
$.getJSON(mtgoxAPI, function (json) {
// Set the variables from the results array
var price = json.amount;
// Set the table td text
$('#btc-price').text(price);
});
任何帮助,将不胜感激。