1
これで、私のリポジトリ内のすべての問題のリストを取得しようとしています。問題は、私がどのようにレスポンスヘッダーにアクセスし、他のページを取得するのか分からないことです。私が今までに持っているものは、JS内のGithub APIですべての問題(複数ページ)を一覧表示
var outhtml;
var repositories;
$.getJSON(uploadURL, function(json){
repositories = json;
outputPageContent();
});
function outputPageContent() {
if(repositories.length == 0) { outhtml = outhtml + '<p>No repos!</p></div>'; }
else {
//console.log(repositories);
outhtml = outhtml + '<p><strong>Repos List:</strong></p> <ul>';
$.each(repositories, function(index) {
console.log(repositories[index]);
outhtml = outhtml + '<li><a href="'+repositories[index].html_url+'" target="_blank">'+repositories[index].title + '</a></li>';
});
outhtml = outhtml + '</ul></div>';
}
$('#ghapidata').html(outhtml);
}
ですが、これは私に最初のページを取得します。前に問題を解決するためにページ分割を行ったことがありますが、それはPythonで行われました。 js/jqueryを使ってどうすればいいですか?
あなたは 'uploadURL'と' json'のコンテンツを提供することができますか? – styfle
uploadURLは、私のレポからの問題のGitHub APIのURL +アクセストークンです。返されたJSONはすべての問題です(レスポンスの最初のページにあります)。https://developer.github.com/v3/issues/#list-issues-for-a-repository – Acoustic77
'consoleの出力は何ですか? log(json) '? – styfle