我试图从json对象中显示一些信息。我的getJson函数没有返回任何内容。
我认为问题在于我没有针对正确的价值。
我的代码:
<div id="content" class="clearfix row">
<div class="col-md-6">
<p>Please enter your searchterm:</p>
<input id="myinput" type="text">
</div>
<div class="col-md-6" id="result">
</div>
jQuery(document).ready(function() {
jQuery.getJSON("http://ghost-app.com/api/search?searchterm=pro_wheely",function(data){
jQuery("#result").prepend('<h3>'+data.players.results[0].username+'</h3>');
});
});
我可以在浏览器中查看json文件。 JSON link
据我所知,一切看起来都正确。有什么建议吗?