当我尝试从 mtgox API 获取信息时出现以下错误。在 chrome 中,我可以看到使用 jsonp 正在工作,并且没有跨域错误:
$.ajax({
type: 'GET',
url: 'https://mtgox.com/api/1/BTCUSD/ticker?callback=?',
async: false,
contentType: 'application/json',
dataType: 'jsonp',
success: function(json) {
console.log('ok');
}
});