如何向用户提供其用户配置文件?
我有自己的评论应用
型号:
APPS = (
(1, 'Game'),
(2, 'Article'),
(3, 'CMS'),
(4, 'User profile'),
)
comment_type = models.IntegerField(choices=APPS,
default=1,
verbose_name="Comment Type")
object_id = models.IntegerField(default=0)
user = models.ForeignKey(User, null = True, blank = False, related_name='user')
查看:
context = {
...
'comments': Comment.objects.filter(comment_type=1, object_id=game_id),
...
}
用户配置:
class UserProfile(models.Model):
user = models.OneToOneField(User)
signature = models.TextField(blank=True)
我的观点:
{% for comment in comments %}
....
{{ comment.user.profile.signature }}
{% endfor %}
我是django菜鸟。谢谢。
答案 0 :(得分:0)
你可以在这里简单地使用.select_related(),因为Comment已经有一个用户的外键,而User有一个外键给Profile:
comments = Comment.objects.filter(
comment_type=1, object_id=game.id).select_related('user__userprofile')
.prefetch_related()为每个查询执行单独查找。 .select_related()在一个语句中抓取所有内容。