我需要将提交评论及其描述拉到网站的前端。
这是存储库:https://github.com/shannonhochkins/SassyGrids
这是我尝试过的:
$.getJSON('https://api.github.com/repos/shannonhochkins/SassyGrids/comments', function (data) {
var items = [];
$.each(data, function (key, val) {
items.push(key + ': ' + val);
});
log(items);
console.log(items);
});
如您所见,该对象是空的...我真的不知道从这里可以去哪里,有人可以帮忙吗?