我在保存图像时遇到问题。我的模特是这个
class Profile(models.Model):
user = models.OneToOneField(User, on_delete=models.CASCADE)
image = models.ImageField(default='default.jpg', upload_to='profile_pic')
def __str__(self):
return f'{self.user.username} Profile'
def save(self, **kwargs):
super().save()
img = Image.open(self.image.path)
if img.height > 300 or img.width > 300:
output_size = (300, 300)
img.thumbnail(output_size)
img.save(self.image.path)
该模型具有一个OneToOne关系字段,其中包含默认用户模型和一个图像字段。
我正在重写save()方法来调整图像的大小。
但是
当我使用该模型保存图像时,将使用自动唯一的名称进行保存。参见下图,
但是我想这样保存图像。
如果用户上传图片,则会删除该用户的前一张图片 并以唯一的名称保存新图像。
我该怎么做?
答案 0 :(得分:0)
尝试使用信号
from django.db.models.signals import post_init, post_save
from django.dispatch import receiver
from myapp.models import Profile
@receiver(post_init, sender= Profile)
def backup_image_path(sender, instance, **kwargs):
instance._current_imagen_file = instance.image
@receiver(post_save, sender= Profile)
def delete_old_image(sender, instance, **kwargs):
if hasattr(instance, '_current_image_file'):
if instance._current_image_file != instance.image.path:
instance._current_image_file.delete(save=False)