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

django之定义模板语法03(for语句循环dict数据)

时间:2016-01-03 17:18:15      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

1、修改index页面

<html>
    <head>
        <title>DOcument</title>
    </head>
    <body>
        <h1>{{user}}</h1>
        </br>
        </br>
        <h1>注意:book变量的模块变量格式不要漏掉了</h1>  
        {% for book in user %}
            <li>{{book}}</li>   
        {% endfor %}

      <h1>注意:获取Dict的value值</h1>
      {% for book in user.values %}    //items一样有效
           <li>{{book}}</li>
      {% endfor %}

</body>
</html>
2、在views.py文件中定义dict数据

# -*- coding: cp936 -*-
from django.http import HttpResponse
from django.template import loader,Context
        
def index(request):
    t=loader.get_template(index.html)

    Dict={age:25, yuyan:python, where:china, name:xiaodeng, sex:male}

    #向html页面传递数据
    c=Context({user:Dict})

    #渲染方法
    t=t.render(c)
    return HttpResponse(t)

 3、输出结果:

  • age
  • yuyan
  • where
  • name
  • sex

django之定义模板语法03(for语句循环dict数据)

标签:

原文地址:http://www.cnblogs.com/dengyg200891/p/5096677.html

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