明明对html标签进行了注释为什么会出现这样的事情
{# 1.html #}
<!DOCTYPE html>
<html lang="zh-hans">
<head>
<meta charset="utf-8">
<title>html测试</title>
</head>
<body>
{#
{% if age < 18 %}
<p>未成年</p>
{% elif age == 18 %} 等于相当于赋值,两个等于才是等于的意思
<p>是18,可以进入网吧</p>
{% else %}
<P>超过18了可以进入网吧</P>
{% endif %} #}
{% if 'luban' in heros %}
<p>luban正在待命</p>
{% else %}
<p>luban正在睡觉</p>
{% endif %}
</body>
</html>
# views
def index(request):
#return render(request, '1.html', context={'age':18})
context={
'heros':[
'luban',
'xyv',
'caa'
]
}
return render(request, '1.html', context=context)
下面是运行后127.0.0.1显示出的画面
{#
超过18了可以进入网吧
#}
luban正在待命