1

我正在尝试解析 Coinbase API 以拉回比特币的当前价格。这是我的代码:

http://jsfiddle.net/9Kx5N/20/

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);
});

任何帮助,将不胜感激。

4

1 回答 1

3

尝试使用jsonp来回避起源废话:

var mtgoxAPI = "https://coinbase.com/api/v1/prices/spot_rate?callback=?";

$.getJSON(mtgoxAPI, null, function (json) {

    // Set the variables from the results array
    var price = json.amount;


    // Set the table td text
    $('#btc-price').text(price);

});

作品!coinbase API 支持 jsonp 并且 jQuery 可以在它看到时告诉你想要 jsonp

"?callback=?"

在 URL 的末尾。

于 2014-03-02T04:52:56.470 回答