我在模特中有这个:
class CustomUser(AbstractUser):
selectat = models.BooleanField(default=False)
def __str__(self):
return self.username
class Score(models.Model):
VALUE = (
(1, "Nota 1"),
(2, "Nota 2"),
(3, "Nota 3"),
(4, "Nota 4"),
(5, "Nota 5"),
(6, "Nota 6"),
(7, "Nota 7"),
(8, "Nota 8"),
(9, "Nota 9"),
(10, "Nota 10"),
)
user_from = models.ForeignKey(settings.AUTH_USER_MODEL, default=0)
user_to = models.ForeignKey(settings.AUTH_USER_MODEL, default=0, related_name='user_to')
nota = models.PositiveSmallIntegerField(default=0, choices=VALUE)
def __str__(self):
return str(self.user_to)
如何通过让用户访问分数对象?
当我给用户分数对象时,我可以得到笔记。
x = Score.objects.filter(user_to__username='Fane')
x
<QuerySet [<Punctaj: Fane>, <Punctaj: Fane>]>
for a in x:
print(a.nota)
1
5
我想使用这样的东西:
y = CustomUser.objects.get(id=7)
x = x.score.all()
for a in x:
print(a.nota)
1
5
但这不起作用,它给了我:
Traceback (most recent call last):
File "<input>", line 1, in <module>
AttributeError: 'CustomUser' object has no attribute 'score'
答案 0 :(得分:1)
您有两个从CustomUser到Score的外键。第一个user_from
未设置related_name,因此它使用默认值score_set
:
x = y.score_set.all()
第二个设置了一个related_name,所以你使用它:
x = y.user_to.all()
请注意,作为相关名称,这没有多大意义,因为它指的是分数,而不是用户;它可能应该是scores_to_user
。