0

我正在使用 Django 1.6.2 和 django-imagekit==3.2.1。

我的模型中有以下内容:

class Avatar(models.Model):
avatar = ProcessedImageField(upload_to=/here/the/path,
                             format='JPEG',
                             options={'quality': 60})
avatar_thumb = ImageSpecField(source='avatar',
                               processors=[ResizeToFill(150, 150)],
                               format='JPEG',
                               options={'quality': 60})

上传时,我的头像已正确保存到我的 S3,但我的 avatar_thumb 没有任何反应。

如何修改 avatar_thumb(重命名,设置 s3 路径)并将其也保存到 S3?

4

1 回答 1

-1

出 django-storages,然后您可以将“upload_to”设置为 S3 存储桶中的路径。

于 2014-04-23T15:05:44.657 回答