作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的模型中有一个类型为 FileField
的字段.这给了我一个 File
类型的对象,它有以下方法:
File.name
: The name of the file including the relative path fromMEDIA_ROOT
.
我想要的是类似“.filename
”的东西,它只会给我文件名而不是路径,比如:
{% for download in downloads %}
<div class="download">
<div class="title">{{download.file.filename}}</div>
</div>
{% endfor %}
这会给出类似 myfile.jpg
最佳答案
在您的模型定义中:
import os
class File(models.Model):
file = models.FileField()
...
def filename(self):
return os.path.basename(self.file.name)
关于Django 文件字段 : How to return filename only (in template),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2683621/
我是一名优秀的程序员,十分优秀!