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

制作首页的显示列表

时间:2017-12-02 23:24:05      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:序列   route   turn   user   添加   参数   art   lis   传递   

1. 在首页添加显示问答的列表,并定义好相应的样式。

无序列表

<ul >

  <li>Coffee</li>

  <li>Tea</li>

  <li>Milk</li>

</ul>

2. 用字典向index.html传递参数。

 

 <div class="listbox">
        <ul class="alist">
            <li class="list">
                <a href="#">{{ username }}</a><br>
                <a href="#">Question:{{ title }}</a><br>
                <a href="#">Detail:{{ detail }}</a>
                <span class="badge">{{ create_time }}TIME</span>
                <p></p>
            </li>
        </ul>
        </div>
@app.route(/index/)
def index():
    contex={
        user:mis
    }
    return render_template(index.html)

 

制作首页的显示列表

标签:序列   route   turn   user   添加   参数   art   lis   传递   

原文地址:http://www.cnblogs.com/caoxinwen092/p/7955819.html

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