javascriptの勉強をしています。以下のコードで、xhrWrapperを、apiを取得後パースするといった再利用できるfunctionにしたいと思っています。
そこで、returnを使えばいいのかなと思い、14行目にreturn dataを入れたのですが、うまく戻ってくれません。
xhr.onload内のfunctionなので、returnが戻らないのはなんとなく理解できたのですが、実際どのようにして戻せばいいのかわからない状態です。
javascript
1<!doctype html> 2<html> 3<head> 4 <title>WebAPI</title> 5 <script> 6 var TOKEN = 'xxx'; 7 var pathRepos = 'https://api.github.com/user/repos?visibility=private'; 8 function xhrWrapper(path) { 9 var xhr = new XMLHttpRequest(); 10 xhr.open('get', path); 11 xhr.setRequestHeader('Authorization', 'token ' + TOKEN); 12 xhr.onload = function(){ 13 var data = JSON.parse(xhr.response); 14 return data; 15 }; 16 xhr.onerror = function () { 17 console.log("error"); 18 }; 19 xhr.send(null); 20 }; 21 22 showBranch( xhrWrapper(pathRepos) ); 23 24 function showBranch(d) { 25 console.log(d); 26 var l = d.length; 27 for(var i = 0; i < l; i++){ 28 var repoName = d[i].name; 29 dataBranch = "https://api.github.com/user/repos/" + repoName + "/branches"; 30 console.log(repoName); 31 console.log(dataBranch); 32 } 33 } 34 </script> 35</head> 36<body> 37</body> 38</html>
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。