python-django-模板标签
阅读原文时间:2023年07月08日阅读:1

注意:这个控制语句和python的差不多,但是记住必须有endfor 和endif 结尾

模板文件的django格式的注释是不会出现再网页渲染的源代码当中的

使用列子:



Title

{#绝对是覅及地方#}

    {% for item in list\_city %}
  • {{ item }}
  • {% endfor %}

显示商品信息

    {% for item in list\_num %} {% if item.price >= 200 %}
  • {{ item.name }}:{{ item.price }}
  • {% endif %} {% endfor %}
订单
    {% for item in list\_order %}
  • {{ item }}
  • {% empty %}
  • 没有订单
  • {% endfor %}



结果:

cycle的作用:

结果:

内置标签的图

https://docs.djangoproject.com/en/3.0/ref/templates/builtins/

url(r'^auth/',include('oauth.urls' ,namespace='auth')),
url(r'^print/resp/attr/$', views.print_resp_attr, name='print_resp_attr'),
url(r'^print/resp/attr/$', views.print_resp_attr, name='print_resp_attr'),

注意格式:

手机扫一扫

移动阅读更方便

阿里云服务器
腾讯云服务器
七牛云服务器

你可能感兴趣的文章