<ul> <p style="font-weight: 600;font-size: 16.5px">Comment[{{ question.comments|length }}]</p> <div> {% for foo in question.comments %} <li> <img src="{{ url_for('static',filename='image/xiaolian.png') }}"> <a href="{{ url_for('usercenter',user_id=foo.author_id) }}">{{ foo.author.username }}</a> <span>{{ foo.creat_time }}</span><br> <p>{{ foo.detail }}</p> </li> {% endfor %} </div> </ul>
question = db.relationship('Question', backref=db.backref('comments',order_by=creat_time.desc))
<p style="font-weight: 600;font-size: 16.5px">Comment[{{ question.comments|length }}]</p>
{% extends 'base.html' %} {% block title %}Center{% endblock %} {% block head %} <link href="{{ url_for('static',filename='css/center.css') }}" rel="stylesheet" type="text/css"> {% endblock %} {% block main %} <div class="center"> <h2><a href="{{ url_for('usercenter',user_id=user.id) }}"> {{ user.username }}</a></h2> <ul> <p style="font-weight: 600;font-size: 16.5px">All Questions And Answers</p> <div class="question"> {% for foo in user.question %} <li> <img src="{{ url_for('static',filename='image/xiaolian.png') }}"> <a href="#">{{ foo.author.username }} </a> <span>{{ foo.creat_time }}</span><br> <a class="title" href="{{ url_for('detail',question_id=foo.id) }}">{{ foo.title }}</a><br> <p>{{ foo.detail }}</p> </li> {% endfor %} </div> </ul> <br><hr> <ul> <p style="font-weight: 600;font-size: 16.5px">ALL Comments</p> <div> {% for foo in user.comments %} <li> <img src="{{ url_for('static',filename='image/xiaolian.png') }}"> <a href="#">{{ foo.author.username }} </a> <span>{{ foo.creat_time }}</span><br> <p>{{ foo.detail }}</p> </li> {% endfor %} </div> </ul> <br><hr> <ul> <p style="font-weight: 600;font-size: 16.5px">Personal Information</p> <div class="info"> <li><p>Username:{{ user.username }}</p></li> <li><p>Id:{{ user.id }}</p></li> <li><p>Number of articles:{{ user.question|length }}</p></li> </div> </ul> <br> </div> {% endblock %}
1.我的中心的頁面佈局(html文件及相應的樣式文件)css
2.定義視圖函數def usercenter(user_id):html
3.向前端頁面傳遞參數前端
4.頁面顯示相應數據函數
發佈的所有問答佈局
發佈的所有評論url
我的信息spa
5.各個頁面連接到我的中心code