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

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

显示所有评论

{% for foo in ques.comments %

{% for foo in comments %}                    
  • {
    { foo.author.username }}
    {
    { foo.creat_time }}

    {

    { foo.detail }}

  • 所有评论排序

    uquestion = db.relationship('Question', backref=db.backref('comments', order_by=creat_time.desc))

    class Comment(db.Model):    __tablename__='comment'    id = db.Column(db.Integer,primary_key=True,autoincrement=True)    author_id = db.Column(db.Integer,db.ForeignKey('user.id'))    question_id = db.Column(db.Integer,db.ForeignKey('question.id'))    create_time = db.Column(db.DateTime,default=datetime.now)    detail = db.Column(db.Text,nullable=False)    question = db.relationship('Ques',backref = db.backref('comments',order_by=create_time.desc))    author = db.relationship('User',backref = db.backref('comments'))

    显示评论条数

    {
    { ques.comments|length }}

    评论:{
    { ques.comments|length }}

    完成个人中心

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

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

    3.向前端页面传递参数

    4.页面显示相应数据

    发布的全部问答

    发布的全部评论

    个人信息

    {% extends 'navigation.html' %}{% block title %}个人中心{% endblock %}{% block main %}    
    {% endblock %}
    @app.route('/usercenter/
    ')@loginFirstdef usercenter(user_id): user = User.query.filter(User.id == user_id).first() context = { 'username':user.username, 'questions':user.questions, 'comments':user.comments } return render_template('usercenter.html',**context)

     

    转载于:https://www.cnblogs.com/951111ldj/p/8034926.html

    你可能感兴趣的文章
    VSFTP虚拟用户的配置
    查看>>
    容器Vector原理(学习)
    查看>>
    LNMP搭建
    查看>>
    if语句的注意事项:
    查看>>
    论nfs共享存储服务器的优缺点
    查看>>
    Citrix Server7.0学习笔记
    查看>>
    linux定时任务执行php任务
    查看>>
    #21 在Linux里进程管理详解,与pstree、ps、pgrep、pkill、pidof、top命令的应用
    查看>>
    微电子和计算机对 电子的影响
    查看>>
    六月个人考核
    查看>>
    图形语言 Kgo
    查看>>
    java零技术学到技术经理 1.第一个java程序:你好,范冰冰
    查看>>
    MySQL 基于主主备份
    查看>>
    数据库keepalived部署文档
    查看>>
    echo $PATH
    查看>>
    MySQL数据库管理
    查看>>
    CentOS7 上部署Haproxy及Nginx 搭建Web群集
    查看>>
    脚本——如何运用LoadRunner进行http接口测试
    查看>>
    Nginx 服务语法正确,服务启动失败解决方法
    查看>>
    定时任务1
    查看>>