documents = models.FileField(upload_to=settings.FILE_PATH, verbose_name=
_('Attach Your Documents'), help_text=_('.pdf file not exceeding 5 mb.'),
null=True, blank=True)
通过这种方式,我正在为upload
中的django admin
文件创建模型。现在,我想在S3
上点击save
时将此文件上传到django admin
。我应该在哪里写uploading
到s3的方法。我不知道。