使用 model.FileField 在 Django 中保存之前修改文件名
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用带有实例和文件名输入的 upload_to 值函数并返回路径和文件名,
例如:
您可以在函数中更改路径和文件名
you can use function for upload_to value with instance and filename inputs and return path and file name
for example:
you can change path and filename in function