模型中的增量不起作用

时间:2017-05-26 11:30:49

标签: python django django-rest-framework

我想增加模型的属性。但它不会考虑增量。这是代码。这部分在模型函数内部:

for objt in CompanyHomePageLogosWaiting.objects.filter(score=2):
    if self.logo_name==objt.logo_name:
        if self.test < self.score :
            num = self.score
            self.test += 1 #### this is the incrementation
        if self.test == self.score :
            objt.score=-1
            objt.save()
            self.test = 0
return num

test是模型的属性,默认值为-1。 感谢。

0 个答案:

没有答案