我试图解决下面的问题,经过一些搜索后,似乎是在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
最佳答案
可能的解决方案:
原文链接:https://www.f2er.com/python/439484.htmlclass 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()