python – 与模型继承一起强制唯一

前端之家收集整理的这篇文章主要介绍了python – 与模型继承一起强制唯一前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我试图解决下面的问题,经过一些搜索后,似乎是在Django中开放的bug.我通过向模型子项添加方法解决该问题,虽然此解决方案有效,但仍需要使用此子类对任何(模型)表单进行另一次自定义检查.我发布这个比其他人更快找到解决方案,其他解决方案也是受欢迎的.

class Foo(models.Model):
    attr1 = models.IntegerField()
    attr2 = models.IntegerField()

    class Meta:
        unique_together = (
            ('attr1','attr2'),)


class Bar(Foo):
    attr3 = models.IntegerField()

    class Meta:
        unique_together = (
            ('attr1','attr3'),)

提出:

Unhandled exception in thread started by 
最佳答案
可能的解决方案:

class Bar:
    # fields...

    @classmethod
    def _validate_unique(cls,self):
        try:
            obj = cls._default_manager.get(attr1=self.attr1,attr3=self.attr3)
            if not obj == self:
                raise IntegrityError('Duplicate')
        except cls.DoesNotExist:
            pass

    def clean(self):
        self._validate_unique(self)
        super(Bar,self).clean()
原文链接:https://www.f2er.com/python/439484.html

猜你在找的Python相关文章