问候 在我的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.
答案 0 :(得分:1)