zoukankan      html  css  js  c++  java
  • django在进行模板render(渲染)时,对传过来的是字典中包含字典应用方法

    网上自强学堂参考的

    views.py

    def home(request):
        info_dict = {'site': u'自强学堂', 'content': u'各种IT技术教程'}
        return render(request, 'home.html', {'info_dict': info_dict})

    home.html

        
    站点:{{ info_dict.site }} 内容:{{ info_dict.content }}

    在模板中取字典的键是用点info_dict.site,而不是Python中的 info_dict['site'],效果如下:

    QQ20150511-6@2x.png

    还可以这样遍历字典:

    {% for key, value in info_dict.items %}
        {{ key }}: {{ value }}
    {% endfor %}


    其实就是遍历这样一个 List:  [('site', u'自强学堂'), ('content', u'各种IT技术教程')]

    下面是我自己写的

    default.html

            <div class="m-theme257">
                                        <div class="m-theme257-al" data-scroll-reveal="enter bottom over 1s">        
                    <div class="m-theme257-img">
                        <a href={{ 0.jumplink }} target="_blank">
                            <img class='lazyload' data-original={%static "postcard/priture/{{ 0.linkimage }}"%} alt="山区孩子拍摄的精美明信片)">
                        </a>
                    </div>
                    <div class="m-theme257-content">
                        <div class="m-theme257-title">
                            <a href={{ 0.jumplink }} target="_blank">{{ 0.name }}</a>
                        </div>
                        <div class="m-theme257-txt">
                        <a >
                            价格:{{ 0.price }}元
                        </a>
                        </div>
                        <div class="m-theme257-time">拍摄日期:{{ 0.takepicturetime }}</div>
                    </div>
                </div>

    view.html

    def index(request):
        #get post cards message
        b = postcard.objects.all()[:9]      #下面的语句返回前面5 个对象(LIMIT 5):
        a = len(b)
        c = {}
        d = {'displaytwo':'none','display':'block'}
        for i in range(0,a,1):
            list = {'name':b[i].name,'takepicturetime':b[i].takepicturetime,'linkimage':b[i].linkimage,'price':b[i].price,'jumplink':b[i].jumplink,}
            c[i]=list
        c['d']=d
     
        return render(request,'one/default.html',c)

  • 相关阅读:
    Android Studio AVD和SDK Manager灰色不能点击的问题。
    回溯:最佳调度问题
    回溯:八皇后问题(蒟蒻)
    usaco1.4.3等差数列
    单调队列练习题(oj p1157 p1158 p1159)
    OJP1147括号匹配加强版(栈)与P1153乱头发节(单调栈)
    NOIP2017游记......
    火柴棒等式c++
    潜伏者(noip09年t1)解题报告 C++
    2016noipday1t1玩具迷题结题报告
  • 原文地址:https://www.cnblogs.com/guguobao/p/8537077.html
Copyright © 2011-2022 走看看