我有一个小应用程序,我正在努力使用django内置的filesizeformat。目前,格式如下:{{ value|filesizeformat }}
我知道我需要在view.py文件中定义这个,但是,我似乎不知道怎么做。我尝试使用以下语法:
def filesizeformat(bytes):
"""
Formats the value like a 'human-readable' file size (i.e. 13 KB, 4.1 MB,
102 bytes, etc).
"""
try:
bytes = float(bytes)
except (TypeError,ValueError,UnicodeDecodeError):
return u"0 bytes"
if bytes < 1024:
return ungettext("%(size)d byte", "%(size)d bytes", bytes) % {'size': bytes}
if bytes < 1024 * 1024:
return ugettext("%.1f KB") % (bytes / 1024)
if bytes < 1024 * 1024 * 1024:
return ugettext("%.1f MB") % (bytes / (1024 * 1024))
return ugettext("%.1f GB") % (bytes / (1024 * 1024 * 1024))
filesizeformat.is_safe = True
然后,我在模板中将“value”替换为“bytes”,但这似乎不起作用。有什么建议吗?
最佳答案
filesizeformat
是一个内置过滤器,您不需要自己实现它您应该在模板中提供值,例如:
{% for page in pages %}
<li>page.name {{page.size|filesizeformat}}</li>
{% endfor %}
现在,当您从视图中呈现模板时,提供一个
pages
参数,它是一个dict列表,如下所示:[{'name': 'page1', 'size': 10000}, {'name': 'page2', 'size': 5023034}]
等等。