3
Django-ファイルを作成してモデルのFileFieldに保存する方法は?
これが私のモデルです。私がしたいことは、新しいファイルを生成し、モデルインスタンスが保存されるたびに既存のファイルを上書きすることです。 class Kitten(models.Model): claw_size = ... license_file = models.FileField(blank=True, upload_to='license') def save(self, *args, **kwargs): #Generate a new license file overwriting any previous version #and update file path self.license_file = ??? super(Request,self).save(*args, **kwargs) ファイルのアップロード方法に関するドキュメントがたくさんあります。しかし、ファイルを生成してモデルフィールドに割り当て、Djangoに適切な場所に保存させるにはどうすればよいですか?