I have a simple model with a Model Manager:
我有一个模型管理器的简单模型:
class CompanyReviewManager(models.Manager):
def get_votes_for_company(self, company):
try:
return CompanyReview.objects.filter(user = user).count()
except ObjectDoesNotExist:
return None
def get_rating_for_field(self, installer, field):
try:
return CompanyReview.objects.filter(user = user).aggregate(Avg(field))
except ObjectDoesNotExist:
return None
class CompanyReview(models.Model):
user = models.ForeignKey(settings.AUTH_USER_MODEL)
satisfaction = models.PositiveSmallIntegerField(blank = True, null = True,)
comments = models.TextField(blank = True, null = True,)
objects = CompanyReviewManager()
def save(self, *args, **kwargs):
obj = super(InstallerReview, self).save(*args, **kwargs)
return obj
When I now try to save an object in the Django shell, the object will be saved, but nothing will be returned. Why?
当我现在尝试在Django shell中保存一个对象时,该对象将被保存,但不会返回任何内容。为什么?
In [1]: company_obj = InstallerReview()
In [2]: company_obj.user = CompanyUser.objects.all()[2]
In [3]: obj = company_obj.save()
In [4]: obj
Out[4]:
In [5]: company_obj
Out[5]: <CompanyReview: AdminCompany>
Why is the 3rd step failing without an error?
为什么第3步失败没有错误?
1 个解决方案
#1
20
Because the super class save
method doesn't return anything. It doesn't need to: self
is being saved, there's no point returning something else and calling it obj
.
因为超类保存方法不返回任何内容。它不需要:自我被保存,没有必要返回别的东西并称之为obj。
You could just return self
from your subclass save
method, but there's not much point. Generally in Python, if functions change objects in-place, they do not return the changed object: compare with the list sort()
method.
您可以从子类save方法返回self,但没有多大意义。通常在Python中,如果函数就地更改对象,则它们不会返回已更改的对象:与list sort()方法进行比较。
#1
20
Because the super class save
method doesn't return anything. It doesn't need to: self
is being saved, there's no point returning something else and calling it obj
.
因为超类保存方法不返回任何内容。它不需要:自我被保存,没有必要返回别的东西并称之为obj。
You could just return self
from your subclass save
method, but there's not much point. Generally in Python, if functions change objects in-place, they do not return the changed object: compare with the list sort()
method.
您可以从子类save方法返回self,但没有多大意义。通常在Python中,如果函数就地更改对象,则它们不会返回已更改的对象:与list sort()方法进行比较。