Django:ImageField禁用图像删除

时间:2010-07-01 13:33:58

标签: python django django-models

问候 在我的Foo模型中有一个ImageField对象:

class Foo(models.Model):
    name = models.CharField(max_length=50)
    photo = models.ImageField(upload_to='foobar', blank=True, null=True)

我希望Foo在删除Foo对象和特定对象后禁用删除上传的照片。我怎么能这样做?

即:

If self.name == "foo":
    #skip deleting the image from the harddisk.

1 个答案:

答案 0 :(得分:1)