Questions tagged «django-file-upload»

3
Django FileField:如何仅返回文件名(在模板中)
我的type模型中有一个字段FileField。这给了我一个type的对象File,它具有以下方法: File.name:文件名,包括来自的相对路径 MEDIA_ROOT。 我想要的是类似“ .filename”的东西,它只会给我文件名而不是路径,例如: {% for download in downloads %} <div class="download"> <div class="title">{{download.file.filename}}</div> </div> {% endfor %} 这会给像 myfile.jpg
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.