我正在处理一些 django 代码中的一些边缘情况,并且遇到了一个仅在涉及特定字段时才会遇到的问题。
我希望能够检测模型用于字段的类,并根据结果放入备用逻辑。
我尝试get_internal_type()
在字段实例上使用,但它只是返回"BooleanField"
而不是预期的"ModifiedField"
自定义字段类型:
class ModifiedField(models.BooleanField):
def __init__(self, *args, **kwargs):
kwargs['editable'] = False
models.BooleanField.__init__(self, *args, **kwargs)
def pre_save(self, model_instance, add):
value = getattr(model_instance, self.attname)
if add:
return True
elif value == 2:
return False
else:
return True
模型:
class TemplateItem(models.Model):
uuid = UUIDField(primary_key=True)
name = models.CharField(null=False, blank=True, max_length=255)
image = models.ImageField(_('Image'), upload_to=_template_image_upload_path,
storage=item_fs, null=True, blank=True)
is_modified = ModifiedField()