English 中文(简体)
Django的独特性:避免重复
原标题:Django unique_together not preventing duplicates

我显然不理解如何正确行事,有人会把我 straight。 这个模式:

class Team(models.Model):
   teamID=models.CharField(max_length=255) #this will be generated on the iPad
   name=models.CharField(max_length=255)
   slug=models.SlugField(max_length=50) 
   teamNumber=models.CharField(max_length=30)
   checkIn=models.DateTimeField(default=datetime.now())
   totalScore=models.IntegerField(max_length=6) 

   class Meta:
       unique_together = ("teamID", "name", "slug", "teamNumber", "totalScore")

如果我连续两度提交报告,就会节省全部费用。 !

最佳回答

Try the appropriate nested-tuple syntax (foo,bar), und only (foo, 则?

https://docs.djangoproject.com/en/dev/ref/models/options/#unique-together

问题回答

正如宣传者3 提到制约因素是在数据库一级实施的;我假定,你正在使用一个像Kingk”这样的数据库支持这种限制。

该公司通过行政办公室开展工作的理由是,它正在进行独一无二的检查(它并不严格依靠数据库来显示违反限制的情况)。

您可以转向支持这种独一无二的制约因素的数据库发动机(MySQL或Pogres将发挥作用),或请您在使用信号时考虑添加检查内容:

是独一无二的直径——作为 input子的输入,我没有测试两个以上元素的les,但应该工作。

例如:

unique_together = (("teamID", "name"), ("slug", "teamNumber"))

or:

unique_together = (("teamID", "name", "slug", "teamNumber", "totalScore"))

我认为,如果不增加任何不必要的领域,这种做法是有益的。

class Request(models.Model):
    user = models.ForeignKey(User, related_name= request_list , on_delete=models.CASCADE)
    requested_user = models.ForeignKey(User, on_delete=models.CASCADE)
    request_date = models.DateField(default=timezone.now())
    request_status = models.BooleanField(default=False)

    def save(self, *args, **kwargs):
        # Checking for duplicate requests
        try:
            request = Request.objects.get(user=self.user, requested_user=self.requested_user)
            raise ValidationError( Duplicate Value , code= invalid )
        except self.DoesNotExist:
            super().save(*args, **kwargs)

        # Checking for reversed duplicate requests
        try:
            request_new = Request.objects.get(requested_user=self.user, user=self.requested_user)
            raise ValidationError( Duplicate Value , code= invalid )
        except self.DoesNotExist:
            super().save(*args, **kwargs)

    def __str__(self):
        return self.user.username +  ------>  + self.requested_user.username




相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签