使用github js api:cant过滤器问题

时间:2013-10-09 20:05:54

标签: javascript github coffeescript

我使用https://github.com/michael/github运行这些行,the GitHub API是{{3}}

的包装器
issues.list
  label: "high",
  (err, issues) ->
    createTable issues

它会列出所有问题,而不是标有“高”的问题

1 个答案:

答案 0 :(得分:0)

只是答案,不要使用那个API ..这是一个功能性的JQuery

$.ajax
  beforeSend: (request) ->
    request.setRequestHeader "Authorization", """token #{settings.token}"""
  url: """https://api.github.com/repos/#{settings.user}/#{settings.repo}/issues?labels=high"""
  dataType: "json"
  success: (data) ->
    console.log data[0].title