サブレッジからの最初のpermalinkで私のdivを追加したいと思います。私はjQueryのドキュメンテーション、Smashing Magazineの記事、redditのgithubを試してみましたが効果はありませんでした。これを行う方法を理解するのを手伝ってください。getJSON + reddit api - それを噛む方法?
のjQuery:
$(document).ready(function(){
$.getJSON("api.reddit.com/r/aww/.json", function(json){
$(".slodziaki").append("<p>Permalink</p>"+ json.data.children.data[0].permalink)'
});
});
HTML:
<html>
<head>
<meta charset="utf-8">
<title>Słodziaki.</title>
<script>
</script>
</head>
<body>
<div class="slodziaki">
Reddit api test.
</div>
</body>
</html>
jsFiddle:http://jsfiddle.net/AdVS3/2/
重複するhttp://stackoverflow.com/questions/8191105/how-to-extract-url-data-from-reddit-api-using-json – Niko
'api.reddit.com/r/aww/.json 'は適切なURLではなくURLパスです。 – Gumbo