12.2
Posted 037吴宜珊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了12.2相关的知识,希望对你有一定的参考价值。
首页列表显示全部问答:
- 将数据库查询结果传递到前端页面 Question.query.all()
- 前端页面循环显示整个列表。
- 问答排序
@app.route(‘/‘) def index(): context={ "questions":Question.query.order_by(‘create_time‘).all() } return render_template(‘base.html‘,**context)
完成问答详情页布局:
- 包含问答的全部信息
- 评论区
- 以往评论列表显示区。
{% block body %} <h1>提问详情</h1> <div class="container"> <div class="row clearfix"> <div class="col-md-12 column"> <h3 class="text-center"> title </h3> <p class="text-center"> detail </p> <form role="form"> <div class="form-group"> <label for="exampleInputAnswer">Write down your answer</label><input type="answer" class="form-control" id="exampleInputAnswer1" /> </div> <button type="submit" class="btn btn-default">Submit</button> </form> </div> </div> </div> {% endblock %}
- 在首页点击问答标题,链接到相应详情页。
{% block main %} <p>{{ username }} contextx</p> <ul class="new-list"> {% for foo in questions %} <li class="list-group" style="padding-left: 0px; padding-right: 10px; box-shadow: rgba(0, 0, 0, 0.498039) 0px 0px 0px 0px;"> <span class="glyphicon glyphicon-leaf" aria-hidden="true"></span> <a href="#">{{ foo.author.username }}</a><br> <a href="{{ url_for(‘detail‘,questions_id=foo.id) }}">{{ foo.title }}</a>{#链接到相关详情页#} <span class="time" >{{ foo.create_time }}</span> <p>{{ foo.detail }}</p> </li> {% endfor %} </ul> {% endblock %}
以上是关于12.2的主要内容,如果未能解决你的问题,请参考以下文章
Netbeans IDE (12.2):PHP 8.0 构造函数提升的语法错误
输入[type =“file”]在ios 12.2上不起作用
如何使用户定义的运行时属性在 xcode 10.2.1 和 ios 12.2 中起作用