在 django 模板中将 int 转换为 ascii [chr()]

发布于 2024-12-02 12:45:12 字数 228 浏览 4 评论 0原文

我正在编写一个django应用程序,在一个循环中,

    {% for item in list %}
    {{ forloop.counter0 }}
    {% endfor %}

这将打印出循环中从0开始的数字。但是我想打印从'A'开始的字母表,所以python的方法是 chr(forloop.counter0+ 65),但这是在模板内,有什么想法吗?谢谢。

I am writing a django application, and in a loop,

    {% for item in list %}
    {{ forloop.counter0 }}
    {% endfor %}

this will printout the number in the loop starting from 0. But I want to printout alphabet starting from 'A', so the python way to do it is chr(forloop.counter0+65), but this is inside the template, any ideas? thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小嗷兮 2024-12-09 12:45:12

您可以编写一个简单的 自定义模板标签,例如过滤器:

@register.filter(name='chr')
def chr_(value):
    return chr(value + 65)

然后将其加载到您的模板中,您可以执行以下操作:

{{ forloop.counter0|chr }}

You can write a simple custom template tag, for example a filter:

@register.filter(name='chr')
def chr_(value):
    return chr(value + 65)

Then load it in your template and you can do:

{{ forloop.counter0|chr }}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文