我的 Django 站点有一个 Photo 模型,它代表系统中的照片,我正在使用Django.contrib.comments
它来允许用户对这些照片进行评论。这一切都很好,但我想扩展我的 Tastypie API 以允许我PhotoResource
使用 URL访问评论,/api/v1/photo/1/comments
其中 1 是照片的 id。我能够使 URL 正常工作,但无论我在做什么类型的过滤,我似乎总是返回完整的评论集,而不仅仅是提供的照片集。我在下面包含了我当前代码 API 的精简选择:
class CommentResource(ModelResource):
user = fields.ForeignKey(UserResource, 'user')
class Meta:
queryset = Comment.objects.all()
filtering = {
'user': ALL_WITH_RELATIONS,
}
class PhotoResource(ModelResource):
user = fields.ForeignKey(UserResource, 'user')
class Meta:
queryset = Photo.objects.all()
filtering = {
'id': 'exact',
'user': ALL_WITH_RELATIONS
}
def prepend_urls(self):
return [url(r"^(?P<resource_name>%s)/(?P<pk>\w[\w/-]*)/comments%s$" % (self._meta.resource_name, trailing_slash()), self.wrap_view('get_comments'), name="api_get_comments"),
]
def get_comments(self, request, **kwargs):
try:
obj = self.cached_obj_get(request=request, **self.remove_api_resource_names(kwargs))
except ObjectDoesNotExist:
return HttpGone()
except MultipleObjectsReturned:
return HttpMultipleChoices("More than one resource is found at this URI.")
comment_resource = CommentResource()
return comment_resource.get_list(request, object_pk=obj.id, content_type=ContentType.objects.get_for_model(Photo))
据我所知,最后一行的过滤器不起作用。我认为这有点复杂,因为 contrib.comments 使用 ContentTypes 链接到正在评论的对象,我猜 Tastypie 可能无法应对。我已经尝试了很多变化,但它仍然不起作用。我很确定这样的事情会起作用:
ctype = ContentType.objects.get_for_model(obj)
comment_resource = CommentResource()
return comment_resource.get_list(request, object_pk=obj.pk, content_type_id=ctype.id)
但再次返回所有评论。
有没有人有任何想法如何做到这一点(或者甚至可能)?