美文网首页
The Django Book 第四章 模板 (2)

The Django Book 第四章 模板 (2)

作者: Alex_Honnold | 来源:发表于2017-10-14 10:39 被阅读0次

    本书网站链接

    这篇主要详细讲述基本的模板标签

    1.if/else
    基础使用:

    {% if today_is_weekend %}
        <p>Welcome to the weekend!</p>
    {% endif %}
    

    或者

    {% if today_is_weekend %}
        <p>Welcome to the weekend!</p>
    {% else %}
        <p>Get back to work.</p>
    {% endif %}
    

    示例,{% if %} 标签接受 and , or 或者 not 关键字来对多个变量做判断 ,或者对变量取反( not )

    {% if athlete_list and coach_list %}
        Both athletes and coaches are available.
    {% endif %}
    {% if not athlete_list %}
        There are no athletes.
    {% endif %}
    {% if athlete_list or coach_list %}
        There are some athletes or some coaches.
    {% endif %}
    {% if not athlete_list or coach_list %}
        There are no athletes or there are some coaches.
    {% endif %}
    {% if athlete_list and not coach_list %}
        There are some athletes and absolutely no coaches.
    {% endif %}
    

    示例,{% if %} 标签不允许在同一个标签中同时使用 and 和 or ,因为逻辑上可能模糊的,例如,如下示例是错误的: 比如这样的代码是不合法的:

    {% if athlete_list and coach_list or cheerleader_list %}
    

    示例,系统不支持用圆括号来组合比较操作。 如果你确实需要用到圆括号来组合表达你的逻辑式,考虑将它移到模板之外处理,然后以模板变量的形式传入结果吧。 或者,仅仅用嵌套的{% if %}标签替换吧,就像这样:

    {% if athlete_list %}
        {% if coach_list or cheerleader_list %}
            We have athletes, and either coaches or cheerleaders!
        {% endif %}
    {% endif %}
    

    并没有 {% elif %} 标签, 请使用嵌套的{% if %} 标签来达成同样的效果:

    {% if athlete_list %}
        <p>Here are the athletes: {{ athlete_list }}.</p>
    {% else %}
        <p>No athletes are available.</p>
        {% if coach_list %}
            <p>Here are the coaches: {{ coach_list }}.</p>
        {% endif %}
    {% endif %}
    

    2.for
    基础使用:

    {% for athlete in athlete_list %}
        <li>{{ athlete.name }}</li>
    {% endfor %}
    

    示例,给标签增加一个 reversed 使得该列表被反向迭代:

    {% for athlete in athlete_list reversed %}
    ...
    {% endfor %}
    

    示例,嵌套使用 {% for %} 标签:

    {% for athlete in athlete_list %}
        <h1>{{ athlete.name }}</h1>
        <ul>
        {% for sport in athlete.sports_played %}
            <li>{{ sport }}</li>
        {% endfor %}
        </ul>
    {% endfor %}
    

    示例,if for结合使用:

    {% if athlete_list %}
        {% for athlete in athlete_list %}
            <p>{{ athlete.name }}</p>
        {% endfor %}
    {% else %}
        <p>There are no athletes. Only computer programmers.</p>
    {% endif %}
    

    示例,替代上面的方法:

    {% for athlete in athlete_list %}
        <p>{{ athlete.name }}</p>
    {% empty %}
        <p>There are no athletes. Only computer programmers.</p>
    {% endfor %}
    

    在每个{% for %}循环里有一个称为forloop 的模板变量。
    forloop.counter 总是一个表示当前循环的执行次数的整数计数器。这个计数器是从1开始的
    forloop.counter0 类似于 forloop.counter ,但是它是从0计数的。
    forloop.revcounter 是表示循环中剩余项的整型变量,在循环初次执行时将被设置为序列中项的总数。最后一次循环执行中,这个变量将被置1。
    forloop.revcounter0 类似于 forloop.revcounter ,但它以0做为结束索引。

    1>
    forloop.counter

    {% for item in todo_list %}
        <p>{{ forloop.counter }}: {{ item }}</p>
    {% endfor %}
    

    2>
    forloop.first 是一个布尔值,如果该迭代是第一次执行

    {% for object in objects %}
        {% if forloop.first %}
            <li class="first">
        {% else %}
            <li>
        {% endif %}
        {{ object }}
        </li>
    {% endfor %}
    

    3>
    forloop.last 是一个布尔值;在最后一次执行循环时被置为True

    {% for link in links %}{{ link }}{% if not forloop.last %} | {% endif %}{% endfor %}
    

    上面的模板可能会产生如下的结果:

     Link1 | Link2 | Link3 | Link4
    

    4>
    forloop.parentloop 是一个指向当前循环的上一级循环的forloop 对象的引用(在嵌套循环的情况下)

    {% for country in countries %}
        <table>
        {% for city in country.city_list %}
            <tr>
            <td>Country #{{ forloop.parentloop.counter }}</td>
            <td>City #{{ forloop.counter }}</td>
            <td>{{ city }}</td>
            </tr>
        {% endfor %}
        </table>
    {% endfor %}
    

    3.ifequal/ifnotequal
    基础使用:

    {% ifequal user currentuser %}
        <h1>Welcome!</h1>
    {% endifequal %}
    
    # 参数可以是硬编码的字符串,随便用单引号或者双引号引起来
    {% ifequal section 'sitenews' %}
        <h1>Site News</h1>
    {% endifequal %}
    
    {% ifequal section "community" %}
        <h1>Community</h1>
    {% endifequal %}
    
    # 和 {% if %} 类似, {% ifequal %} 支持可选的 {% else%} 标签:
    {% ifequal section 'sitenews' %}
        <h1>Site News</h1>
    {% else %}
        <h1>No News Here</h1>
    {% endifequal %}
    

    只有模板变量,字符串,整数和小数可以作为 {% ifequal %} 标签的参数。以下是正确方式:

    {% ifequal variable 1 %}
    {% ifequal variable 1.23 %}
    {% ifequal variable 'foo' %}
    {% ifequal variable "foo" %}
    

    其他任何类型,例如Python的字典类型、列表类型、布尔类型,不能用在 {% ifequal %} 中。以下方式错误:

    {% ifequal variable True %}
    {% ifequal variable [1, 2, 3] %}
    {% ifequal variable {'key': 'value'} %}
    

    4.注释

    # 单行注释
    {# This is a comment #}
    # 多行注释
    {% comment %}
    This is a
    multi‐line comment.
    {% endcomment %}
    

    5.过滤器
    过滤器使用管道字符,如下所示:

    # 显示的内容是变量 {{ name }} 被过滤器 lower 处理后的结果,它功能是转换文本为小写。
    {{ name|lower }}
    
    # 过滤管道可以被* 套接* ,既是说,一个过滤器管道的输出又可以作为下一个管道的输入,如此下去。 下面的例子实现查找列表的第一个元素并将其转化为大写。
    {{ my_list|first|upper }}
    
    # 有些过滤器有参数。 过滤器的参数跟随冒号之后并且总是以双引号包含.
    # 这个将显示变量 bio 的前30个词。
    {{ bio|truncatewords:"30" }}
    

    常见的过滤器:
    addslashes : 添加反斜杠到任何反斜杠、单引号或者双引号前面。
    date : 按指定的格式字符串参数格式化date 或者 datetime 对像。
    length : 返回变量的长度。

    相关文章

      网友评论

          本文标题:The Django Book 第四章 模板 (2)

          本文链接:https://www.haomeiwen.com/subject/garoyxtx.html