Django学习路23_if else 语句,if elif else 语句 forloop.first第一个元素 .last最后一个元素,注释

Posted 哈商大-瀚阳

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django学习路23_if else 语句,if elif else 语句 forloop.first第一个元素 .last最后一个元素,注释相关的知识,希望对你有一定的参考价值。

if else 格式

{%  if  条件 %}
<标签>语句</标签>
{%else%}
<标签>语句</标签>
{%endif}
标签都可以添加样式
    {% for stu in students %}
    {% if forloop.first %}
        <li style="color: chartreuse">{{ stu.s_name }}</li>
        {% else %}
        <li>{{ stu.s_name }}</li>
    {% endfor %}

 

 

forloop.first 表示是否是第一个
color: chartreuse 浅绿色
for 循环和 if 判断 最后都要加上 endfor 和 endif

if elif else 格式

{%  if  条件 %}
<标签>语句</标签>
{%elif 条件 %}
<标签>语句</标签>
{%else %}
<标签>语句</标签>
{%endif}
    {% for stu in students %}
    {% if forloop.first %}
        <li style="color: chartreuse">{{ stu.s_name }}</li>
        {% elif forloop.last %}
        <li style="color: blue">{{ stu.s_name }}</li>
        {% else %}
        <li>{{ stu.s_name }}</li>
        {% endif %}
    {% endfor %}


{#注释内容:  #}

{%comment%}

注释内容:



{%endcomment%}

 

 


2020-05-14

 

以上是关于Django学习路23_if else 语句,if elif else 语句 forloop.first第一个元素 .last最后一个元素,注释的主要内容,如果未能解决你的问题,请参考以下文章

大数据技术之_23_Python核心基础学习_02_ 流程控制语句 + 序列(10.5小时)

Python学习_4_if_while_for

我的 Django 模板中的“Else if”语句出现在 HTML 标头块之后

如何在 Swift 中的 if/else 语句中获取数据

如何为 ViewController segues 设置 if else 语句?

另一个 IF ELSE 中的 IF ELSE 语句