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

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

  • 显示所有评论 {% for foo in ques.comments %}
{% for foo in ques.comments %}            
  • {
    { foo.author.username }}
    {
    { foo.creat_time }}

    {

    { foo.detail }}

  • {% endfor %}

     

    • 所有评论排序 uquestion = db.relationship('Question', backref=db.backref('comments', order_by=creat_time.desc))
    question = db.relationship('Question', backref=db.backref('comments'),order_by=creat_time.desc)

     

    • 显示评论条数 {
      { ques.comments|length }}

    评论:({
    { sen.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, 'question':user.question, 'comments':user.comments } return render_template('usercenter.html',**context)

    转载于:https://www.cnblogs.com/hegui/p/8034494.html

    你可能感兴趣的文章
    golang 分页
    查看>>
    再论机械式针对接口编程
    查看>>
    25 个 Linux 性能监控工具
    查看>>
    C#程序员整理的Unity 3D笔记(十三):Unity 3D基于组件的思想
    查看>>
    Tengine-2.1.1 ngx_http_concat_module 400问题
    查看>>
    Windows中挂载安装ISO文件
    查看>>
    Wayland 1.0发布
    查看>>
    golang的goroutine是如何实现的?
    查看>>
    乐视云基于Kubernetes的PaaS平台建设
    查看>>
    R 学习笔记《十》 R语言初学者指南--图形工具
    查看>>
    PHP通过读取DOM抓取信息
    查看>>
    DICOM医学图像处理:DICOM网络传输
    查看>>
    nio和传统Io的区别
    查看>>
    移动端网页布局中需要注意事项以及解决方法总结
    查看>>
    (原创)Linux下查看系统版本号信息的方法
    查看>>
    oracle
    查看>>
    redis使用过程中主机内核层面的一些优化
    查看>>
    我也要谈谈大型网站架构之系列(2)——纵观历史演变(下)
    查看>>
    OctoberCMS目录结构-基于Laravel
    查看>>
    大话设计模式(Golang) 二、策略模式
    查看>>