尝试使用github js api但它不起作用

时间:2013-10-09 16:48:57

标签: javascript github coffeescript

我使用https://github.com/michael/github

运行这些行
issues = github.getIssues "twbs", "bootstrap"

console.log issues

issues.list (err, issues) ->
  console.log issues

第一部分有效Github.Issue {list: function},但后来说

Uncaught TypeError: undefined is not a function 
    (anonymous function) github.js:585
    _request.xhr.onreadystatechange

1 个答案:

答案 0 :(得分:1)

issues.list()接受两个参数:

issues.list(options, function(err, issues) {});

你试图用一个参数调用它。它抱怨第二个参数是undefined而不是回调。