使用 model.FileField 在 Django 中保存之前修改文件名

发布于 2024-10-05 19:00:50 字数 209 浏览 3 评论 0原文

我有一个 model.FileField(upload_to='%Y/%m/%d') 字段。这很好用;但是,我想根据用户在保存文件之前上传文件的上下文重命名该文件。有没有办法在保存请求对象之前修改它以实现此目的?

我遇到过有类似问题的人,但答案总是指向 Django 文档。我尝试使用文档来解决这个问题,但不能。有人可以提供一些代码来显示热点来解决这个问题吗?

提前致谢。

I have a model.FileField(upload_to='%Y/%m/%d') field. This works great; however, I want to rename the file based on the context of the user uploading the file before it is saved. Is there a way of modifying the request object before it saved to accomplish this?

I have come across people with similar issues but the answers always point back to the Django documentation. I have tried figuring this out using the documentation but can't. Can someone provide some code to show hot to solve this?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晚雾 2024-10-12 19:00:50

您可以使用带有实例和文件名输入的 upload_to 值函数并返回路径和文件名,

例如:

def upload_to_func(instance, filename):
    now = datetime.now()
    return os.path.join(str(now.year), str(now.month), str(now.day), filename)



field_x = model.FileField(upload_to=upload_to_func)

您可以在函数中更改路径和文件名

you can use function for upload_to value with instance and filename inputs and return path and file name

for example:

def upload_to_func(instance, filename):
    now = datetime.now()
    return os.path.join(str(now.year), str(now.month), str(now.day), filename)



field_x = model.FileField(upload_to=upload_to_func)

you can change path and filename in function

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文