在PyResto 文档中关系部分的最后,我们在github API中看到了一个标签模型:
class Tag(GitHubModel):
_path = '/repos/{user}/{repo}/tags/{name}'
_pk = ('user', 'repo', 'name')
commit = Foreign(Commit, embedded=True)
但是,我在 Github API 中找不到任何这样的 REST 路径:
在PyResto 文档中关系部分的最后,我们在github API中看到了一个标签模型:
class Tag(GitHubModel):
_path = '/repos/{user}/{repo}/tags/{name}'
_pk = ('user', 'repo', 'name')
commit = Foreign(Commit, embedded=True)
但是,我在 Github API 中找不到任何这样的 REST 路径: