Python jinja टेम्पलेट में loop.counter कैसे आउटपुट करें?


169

मैं अपने टेम्पलेट में वर्तमान लूप पुनरावृत्ति को आउटपुट करने में सक्षम होना चाहता हूं।

डॉक्स के अनुसार: http://wsgiarea.pocoo.org/jinja/docs/loops.html , एक लूप.काउंटर चर है जिसका मैं उपयोग करने की कोशिश कर रहा हूं।

मेरे पास निम्नलिखित हैं:

<ul>
{% for user in userlist %}
  <li>
      {{ user }} {{loop.counter}}
  </li>
      {% if loop.counter == 1 %}
          This is the First user
      {% endif %}
{% endfor %}
</ul>

हालांकि मेरे टेम्पलेट में कुछ भी आउटपुट नहीं हो रहा है। सही सिंटैक्स क्या है?

जवाबों:


376

लूप के अंदर काउंटर वेरिएबल को jinja2 में loop.index कहा जाता है ।

>>> from jinja2 import Template

>>> s = "{% for element in elements %}{{loop.index}} {% endfor %}"
>>> Template(s).render(elements=["a", "b", "c", "d"])
1 2 3 4

अधिक के लिए http://jinja.pocoo.org/docs/templates/ देखें ।


167
वर्थ उल्लेख है कि यदि आप 0-आधारित इंडेक्स चाहते हैं, तो आप loop.index0इसके बजाय उपयोग कर सकते हैं ।
ेरेऑन

यह पूरी तरह से आश्चर्यजनक है कि इसका संदर्भ मुझे उनकी वेबसाइट पर नहीं मिला, जबकि काउंटर और काउंटर 0 का दस्तावेजीकरण किया गया था, लेकिन मैं कल स्थापित किए गए संस्करण में मौजूद नहीं था।
njzk2

42

फॉर-लूप ब्लॉक के अंदर, आप कुछ विशेष चर को एक्सेस कर सकते हैं जिनमें शामिल हैं loop.index- लेकिन नहीं loop.counter। से सरकारी डॉक्स :

Variable    Description
loop.index  The current iteration of the loop. (1 indexed)
loop.index0 The current iteration of the loop. (0 indexed)
loop.revindex   The number of iterations from the end of the loop (1 indexed)
loop.revindex0  The number of iterations from the end of the loop (0 indexed)
loop.first  True if first iteration.
loop.last   True if last iteration.
loop.length The number of items in the sequence.
loop.cycle  A helper function to cycle between a list of sequences. See the explanation below.
loop.depth  Indicates how deep in a recursive loop the rendering currently is. Starts at level 1
loop.depth0 Indicates how deep in a recursive loop the rendering currently is. Starts at level 0
loop.previtem   The item from the previous iteration of the loop. Undefined during the first iteration.
loop.nextitem   The item from the following iteration of the loop. Undefined during the last iteration.
loop.changed(*val)  True if previously called with a different value (or not called at all).

15

यदि आप के forloop.counterबजाय django उपयोग कर रहे हैंloop.counter

<ul>
{% for user in userlist %}
  <li>
      {{ user }} {{forloop.counter}}
  </li>
      {% if forloop.counter == 1 %}
          This is the First user
      {% endif %}
{% endfor %}
</ul>
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.