我有以下代碼從github中獲取JSON對象,並且正在嘗試將某些部分添加到數組中。回調函數似乎沒有執行
function getTree(hash) {
var pathToTree, returnedJSON;
pathToTree = 'https://api.github.com/repos/myaccount/myrepo/git/trees/' + hash;
$.ajax({
accepts: 'application/vnd.github-blob.raw',
dataType: 'jsonp',
url: pathToTree,
success: function (json) {
returnedJSON = json;
},
error: function (error) {
console.debug(error);
}
});
return returnedJSON;
}
function parseTree(hash) {
var objectedJSON, objectList = [], i, entry;
objectedJSON = getTree(hash, function() {
console.debug(objectedJSON); // this is not appearing in console
for (i = 0; i < objectedJSON.data.tree.length; i += 1) {
entry = objectedJSON.data.tree[i];
console.debug(entry);
if (entry.type === 'blob') {
if (entry.type.slice(-4) === '.svg') { // we only want the svg images not the ignore file and README etc
objectList.append(i.content);
}
} else if (entry.type === 'tree') {
objectList.append(parseTree(getTree(entry.sha)));
}
}
});
return objectList;
}
$(document).ready(function() {
var objects = parseTree('master', function() {
console.debug(objects);
});
});
我的代碼檢索JSON對象不錯,但我試圖把它解析(又名拉出我想要的位)時遇到了麻煩。我正在使用的回調似乎沒有進行,並想知道是否有人可以看看它並幫助我。
具體來說,我可以添加一個回調到我選擇的任何函數嗎?我必須爲這個功能做什麼嗎?