コインベース API へのアクセスhttps://coinbase.com/api/doc/1.0/currencies/exchange_rates.html 私の場合、ビットコイン フィールドと他の通貨フィールド (usd、gbp、eur など) を含むテキスト ボックスがあります。は
<h6>BTC</h6>
<input type="text" id ="coin"/>
<div class="row">
<h6>USD</h6>
<input type="text" id='usd'/>
</div>
<div class="row">
<h6>GBP</h6>
<input type="text" id="gbp"/>
</div>
JavaScript
$(document).ready(function () {
$('#coin').keyup(function () {
var url = 'https://coinbase.com/api/v1/currencies/exchange_rates?callback=?';
$.getJSON(url, function (data) {
});
});
});
エラー
構文エラー: ありません。ステートメントの前に
{"vnd_to_usd":"4.7e-05","ars_to_btc":"0.00021","mmk_to_btc":"2.0e-06","ye..
私がここで間違っていることは何ですか?