如何组合for循环?

发布于 2024-12-04 01:12:20 字数 252 浏览 1 评论 0原文

我正在 Django 中制作 HTML 模板。对于动物列表和一系列数字,我想做这样的事情:

{% for animal in AnimalList and i in range%}
<p>{{i} {{animal.type}} </p>
{%endfor%}

但是当我尝试类似的事情时,我收到模板语法错误。范围可以是 6-10 或 3-7;范围的起点和终点取决于代码中其他地方发生的一些其他函数。

I'm making an HTML template in Django. For a list of animals and a range of numbers, I'd like to do something like this:

{% for animal in AnimalList and i in range%}
<p>{{i} {{animal.type}} </p>
{%endfor%}

but i get a template syntax error when i try something like that. The range could be from 6-10 or 3-7; the range's start and end points depend on some other functions that have happened elsewhere in the code.

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

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

发布评论

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

评论(2

故事还在继续 2024-12-11 01:12:20

您可以使用 {forloop.counter} 获取进入循环的次数,并使用其他函数的值来增加该值。

You can use {forloop.counter} to get the times the loop has been entered and use the value from that other functions to increment this value.

死开点丶别碍眼 2024-12-11 01:12:20

为什么不使用两个循环?

{% for animal in AnimalList %}
    {% for i in range %}
        <p>{{i} {{animal.type}} </p>
    {%endfor%}
{%endfor%}

Why not use two loops?

{% for animal in AnimalList %}
    {% for i in range %}
        <p>{{i} {{animal.type}} </p>
    {%endfor%}
{%endfor%}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文