我正在使用 django-profiles 和 django.contrib.comments,我试图在他们的个人资料中显示特定用户的所有评论。
这是使用来自 django-profiles 的默认 profile_detail 视图。
我已经尝试了这两种方法,但都没有返回任何对象(尽管与此查询匹配的对象确实存在):
{% for comment in profile.user.comment_set.all %}
和
{% for comment in profile.user.user_comments.all %}
在 django.contrib.comments 的源代码中,Comment 模型中 user 的外键具有以下相关名称:
user = models.ForeignKey(User, verbose_name=_('user'),
blank=True, null=True, related_name="%(class)s_comments")
评论还有一个自定义管理器:
# Manager
objects = CommentManager()
其定义为:
class CommentManager(models.Manager):
def in_moderation(self):
"""
QuerySet for all comments currently in the moderation queue.
"""
return self.get_query_set().filter(is_public=False, is_removed=False)
def for_model(self, model):
"""
QuerySet for all comments for a particular model (either an instance or
a class).
"""
ct = ContentType.objects.get_for_model(model)
qs = self.get_query_set().filter(content_type=ct)
if isinstance(model, models.Model):
qs = qs.filter(object_pk=force_unicode(model._get_pk_val()))
return qs
自定义管理器是否导致 .all 查询不返回任何内容?我是否正确访问反向关系?任何帮助,将不胜感激。