0
我需要確保如果模型M中的attribute A
具有某個值,那麼attribute B
將不會是None
。根據另一個字段限制字段的值
例如:
M.A == True then M.B != None
M.A = False then M.B = anything (None, int..)
我需要確保如果模型M中的attribute A
具有某個值,那麼attribute B
將不會是None
。根據另一個字段限制字段的值
例如:
M.A == True then M.B != None
M.A = False then M.B = anything (None, int..)
您可以使用Model.clean()
:
class M(models.Model):
A = models.BooleanField()
B = models.IntegerField(null=True, blank=True)
def clean(self):
if self.A and self.B is None:
raise ValidationError("B can not be None lwhile A is None")
您將提高ValidationError
在無效的條件。
thx。那解決了它。 – brad