在Django模板中显示加号

时间:2017-05-14 21:17:09

标签: django django-templates

在Django中是否有一个过滤器来打印带有加号的正浮点变量?

e.g. 1.234 as +1.234

1 个答案:

答案 0 :(得分:1)

我相信您应该能够使用stringformat,其参数与printf相同:

{{ yourvalue|stringformat:"+d" }}

此处有更多有用的信息:https://pyformat.info/#number_sign

祝你好运!