- 首页列表显示全部问答:
- 将数据库查询结果传递到前端页面 Question.query.all()
- 前端页面循环显示整个列表。
- 问答排序
- 完成问答详情页布局:
- 包含问答的全部信息
- 评论区
- 以往评论列表显示区。
- 在首页点击问答标题,链接到相应详情页。
py:
@app.route('/') def index(): context = { 'question':Question.query.all() } return render_template('index.html',**context) @app.route('/detail/<question_id>') def detail(question_id): quest = Question.query.filter(Question.id == question_id).first() return render_template('detail.html', ques=quest)
html:
{% extends'base.html' %} {% block title %} 首页{ % endblock %} {% block head %} <link rel="stylesheet" href="{{ url_for('static',filename='css/index.css')}}" type="text/css"> {% endblock %} {% block main %} <img src="{{ url_for('static',filename='images/qalogo.jpg') }}"alt="qa"> <p>{{ username }}context</p> <ul class="list-group" style="margin-top: 6.2% ; margin-left: 25%; 50%; "> {% for foo in question %} <li class="list-group-item"> <span class="glyphicon glyphicon-leaf" aria-hidden="true"></span> <a href="{{ url_for('detail',queation_id = foo.id) }}">{{ foo.title}}</a> <a style="text-indent: 18px">{{ foo.detail }}</a> <span class="glyphicon glyphicon-leaf" aria-hidden="true"></span> <a href="{{ url_for('usercenter',user_id=foo.author_id) }}">{{ foo.author.username }}评论:({{ foo.comments|length }})</a> <span class="badge">{{ foo.create_time }}</span> </li> {% endfor %} </ul> </body> {% endblock %} </html>