0
JSON.stringify()
コンテンツをJSON
形式で表示します。quote
クラスの文字とcharacter
クラスの文字を引用したいと思います。ボタンをクリックすると、メッセージと見積もりが表示されます。Jqueryを使用してJSONコンテンツを表示するには
//HTML
<div class="container-fluid">
<div class = "row text-center">
<h2>GOT Quotes</h2>
</div>
<div class = "row text-center">
<div class = "col-xs-12 well quote">
The message will go here
<br>
<div class = "col-xs-12 well character">
Said By
</div>
</div>
</div>
<div class = "row text-center">
<div class = "col-xs-12">
<button id = "getMessage" class = "btn btn-primary">
Get Message
</button>
</div>
</div>
</div>
//JS
<script>$(document).ready(function() {
$('#getMessage').click(function() {
$.getJSON('https://got-quotes.herokuapp.com/quotes', function (json) {
$('.quote').html(JSON.stringify(json));
});
});
});
は、オブジェクトではなく、JSONが含まれているため、 'json'パラメータがmisnamedされすぎ – mplungjan
いくつかのJSONを表示します。 'JSON.stringify()'を使ってJSONに戻す必要はなく、直接必要なプロパティにアクセスするだけです。これに関する助けを得るには、実際のJSON構造のサンプルを表示する必要があります。 – nnnnnn