026:if标签使用详解
Posted zheng-weimin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了026:if标签使用详解相关的知识,希望对你有一定的参考价值。
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标签使用详解的主要内容,如果未能解决你的问题,请参考以下文章
[原创]java WEB学习笔记61:Struts2学习之路--通用标签 property,uri,param,set,push,if-else,itertor,sort,date,a标签等(代码片段