gpt4 book ai didi

python - Django FileField with upload_to 在运行时确定

转载 作者:IT老高 更新时间:2023-10-28 12:32:58 25 4
gpt4 key购买 nike

我正在尝试设置我的上传,以便如果用户 joe 上传一个文件,它会转到 MEDIA_ROOT/joe,而不是让每个人的文件都转到 MEDIA_ROOT。问题是我不知道如何在模型中定义它。以下是它目前的样子:

class Content(models.Model):
name = models.CharField(max_length=200)
user = models.ForeignKey(User)
file = models.FileField(upload_to='.')

所以我想要的是而不是'。作为upload_to,让它成为用户名。

我知道,从 Django 1.0 开始,您可以定义自己的函数来处理 upload_to,但该函数也不知道用户是谁,所以我有点迷茫。

感谢您的帮助!

最佳答案

您可能已经阅读了the documentation ,所以这里有一个简单的例子来说明它的意义:

def content_file_name(instance, filename):
return '/'.join(['content', instance.user.username, filename])

class Content(models.Model):
name = models.CharField(max_length=200)
user = models.ForeignKey(User)
file = models.FileField(upload_to=content_file_name)

如您所见,您甚至不需要使用给定的文件名 - 如果您愿意,也可以在您的 upload_to 可调用文件中覆盖它。

关于python - Django FileField with upload_to 在运行时确定,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1190697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com