我正在使用django,让我们说有两个型号,Comment
& News
。现在,Comment
有一个字段news = models.ForeignKey(News)
,即每条新闻都有一些与之相关的评论。 GET
这些资源的REST方式为/api/v1/news/news-id/comments
。但是如何在tastypie
中指定这样的url结构。
目前在我的api.py
,我有
class CommentResource(ModelResource):
news = fields.ForeignKey(NewsResource, 'news')
class Meta:
resource_name = 'comments'
所以,我必须在这里访问评论:/api/v1/comments/
。我如何实现我的目标?