码迷,mamicode.com
首页 > 其他好文 > 详细

026:if标签使用详解

时间:2018-12-23 17:58:35      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:contex   运算   pre   text   return   使用   doc   doctype   使用详解   

 

if标签使用详解:

if 标签: if 标签相当于 Python 中的 if 语句,有 elif 和 else 相对应,但是所有的标签都需要用标签符号  {%  %}  进行包裹。 if 标签中可以使用 ==、!=、<、<=、>、>=、in、notin、is、is not 等判断运算符。示例代码如下:

一、views.py文件:

def index(request):
    return render(request, index.html, context={age: 20})

二、index.html模板文件:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>

{% if age < 18 %}
    <p>您是未成年人</p>
{% elif age >= 18 and age < 80 %}
    <p>您是成年人</p>
{% else %}
    <p>您是老年人</p>
{% endif %}

</body>
</html>

 

026:if标签使用详解

标签:contex   运算   pre   text   return   使用   doc   doctype   使用详解   

原文地址:https://www.cnblogs.com/zheng-weimin/p/10164781.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!