我使用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
答案 0 :(得分:1)
issues.list()接受两个参数:
issues.list(options, function(err, issues) {});
你试图用一个参数调用它。它抱怨第二个参数是undefined
而不是回调。