每个 GitHub存储库都有描述 字段和可选的网站 字段 。如何使用 AJAX 访问(任何GitHub repo)这些字段?
答案 0 :(得分:2)
答案 1 :(得分:1)
Github提供了用于获取有关存储库的详细信息的API:
https://api.github.com/repos/<organization>/<project>
例如。 https://api.github.com/repos/ruby/ruby
您可以使用简单的简单jQuery来获取所需的信息:
$.ajax('https://api.github.com/repos/ruby/ruby').done(function(json) {
// You can access the description as json.description
console.log(json.description);
});