首页列表显示全部问答,完成问答详情页布局。
Posted 103许雅婷
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了首页列表显示全部问答,完成问答详情页布局。相关的知识,希望对你有一定的参考价值。
首页列表显示全部问答:
- 将数据库查询结果传递到前端页面 Question.query.all()
- 前端页面循环显示整个列表。
- 问答排序
@app.route(\'/\') def index(): context = { \'questions\': Question.query.order_by(\'creat_time\').all() } return render_template("index.html", **context)
<ul class="list-group"style="width: 400px" align="center"> {% for foo in questions %} <li class="list-group-item"style="background-color:lightblue;height:190px;width:400px;"> <span class="glyphicon glyphicon-leaf" aria-hidden="true"></span> <a href="{{ url_for(\'detail\' ,question_id=foo.id)}}">id:{{ foo.author.username }}</a> <br> <a href="http://www.jianshu.com/">标题:{{ foo.title }}</a> <br> <p style="color:black">详情:{{ foo.detail }}</p> <br> <span class="badge"style="margin-left: 50%">{{ foo.creat_time }}</span> </li> {% endfor %} </ul>
- 完成问答详情页布局:
- 包含问答的全部信息
- 评论区
- 以往评论列表显示区。
- 在首页点击问答标题,链接到相应详情页。详情html
{% extends \'index.html\' %} {% block title %}问答详情{% endblock %} {% block main %} <div class="container"> <div class="box"> <h3 style="font-family:宋体;text-align: left;font-size: 40px">详情页</h3> </div> <h2>问题</h2> <h2>作者</h2> <p class="lead">detail:简书是一个优质的创作社区</p> <hr> <form action="{{ url_for(\'question\') }}" method="post"> <div><textarea class="form-control" id="new_comment" rows="6" placeholder="write your comment"style="height:200px;width:800px" ></textarea><br></div> <button type="submit" class="fabu"style="width:100px">发布</button> </form> <ul class="list-group" style="margin: 10px"></ul> </div> {% endblock %}
- 完成问答详情页布局:
以上是关于首页列表显示全部问答,完成问答详情页布局。的主要内容,如果未能解决你的问题,请参考以下文章