我需要将提交评论及其描述提取到网站的前端。
这是存储库: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);
});
你可以看到物体是空的......我真的不知道从这里可以去哪里,有人可以帮忙吗?
答案 0 :(得分:0)
我在这里很困惑,并认为评论实际上是提交,因此对我的获取请求进行了一些小改动,我能够收集提示者信息!
http://jsfiddle.net/shannonhochkins/mjbpj/
$.getJSON('https://api.github.com/repos/shannonhochkins/SassyGrids/commits', function (data) {
console.log(data);
}
就是这样!