博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
评论列表显示及排序,个人中心显示
阅读量:4969 次
发布时间:2019-06-12

本文共 2168 字,大约阅读时间需要 7 分钟。

 

  1. 显示所有评论
    {% for foo in ques.comments %}
  2. 所有评论排序
    uquestion = db.relationship('Question', backref=db.backref('comments', order_by=creat_time.desc))
    question=db.relationship('Question',backref=db.backref('comments',order_by=creatTime.desc))
  3. 显示评论条数
    {
    { ques.comments|length }}

    [{

    { question.comments|length }}]

  4. 完成个人中心

1.个人中心的页面布局(html文件及相应的样式文件)

2.定义视图函数def usercenter(user_id):

@app.route('/self/
')def self(user_id): user=User.query.filter(User.id==user_id).first() context={ 'user':user } return render_template('self.html',**context)

3.向前端页面传递参数

4.页面显示相应数据

发布的全部问答

发布的全部评论

个人信息

5.各个页面链接到个人中心

{% extends'base.html' %}{% block title %}    Self{% endblock %}{% block head %}    
{% endblock %}{% block main %}

{
{ user.username }}

全部问答

{% for foo in user.question %}
{
{ foo.author.username }}
{
{ foo.creatTime }}

{

{ foo.title }}

{

{ foo.detail }}

{% endfor %}

全部评论

{% for foo in user.comments %}
{
{ foo.author.username }}
{
{ foo.creatTime }}

{

{ foo.detail }}

{% endfor %}

个人信息

  • 用户名:{
    { user.username }}
  • 编号:{
    { user.id }}
  • 文章篇数:{
    { user.question|length }}
  • {% endblock %}

     

     

    转载于:https://www.cnblogs.com/lkm123/p/8029742.html

    你可能感兴趣的文章
    web项目的.classpath和.project详解
    查看>>
    面向对象相关内置函数
    查看>>
    Java Swing提供的文件选择对话框 - JFileChooser
    查看>>
    排序:冒泡排序
    查看>>
    Python列表生成式和生成器
    查看>>
    ubuntu 软件安装配置使用总结(由xmind:Depends:java8-runtime but is not installed引出)
    查看>>
    SQL-order by两个字段同时排序
    查看>>
    算法之旅——链表实现
    查看>>
    HDU4027(Can you answer these queries?)
    查看>>
    Jquery 判断值是否存在于数组之内
    查看>>
    C# 7.0 新特性1: 基于Tuple的“多”返回值方法
    查看>>
    【Tyvj1038】忠诚 线段树
    查看>>
    php升级5.3到5.4,5.5,5.6
    查看>>
    php 图片上传 文件上传 大小 限制
    查看>>
    筛法求素数
    查看>>
    实现域登录 --- 介绍
    查看>>
    开机时遇到grub rescue无法进入系统的解决方法
    查看>>
    C#中读取存储过程中临时表中的数据的写法
    查看>>
    选择器
    查看>>
    搭建zipkin参数配置
    查看>>