博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
从首页问答标题到问答详情页
阅读量:5079 次
发布时间:2019-06-12

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

1.主PY文件写视图函数,带id参数。 

@app.route('/detail/<question_id>')
def detail(question_id):
    quest = 
    return render_template('detail.html', ques = quest)
@app.route('/detail/
')def detail(question_id): quest=Question.query.filter(Question.id==question_id).first() return render_template('detail.html',ques=quest)

2.首页标题的标签做带参数的链接。

      {
{ url_for('detail',question_id = foo.id) }}

{% for foo in questions %}            
  • {
    { foo.author.username }}
    {
    { foo.title }}
    发布时间:{
    { foo.creat_time }}

    {

    { foo.detail }}

  • {
    % endfor %}

    3.在详情页将数据的显示在恰当的位置。 

    {
    { ques.title}}
    {
    { ques.id  }}{
    {  ques.creat_time }}
    {
    { ques.author.username }} 
    {
    { ques.detail }}

    {

    { ques.detail }}



    4.建立评论的对象关系映射:

    class Comment(db.Model):

        __tablename__='comment'

    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'))    creat_time = db.Column(db.DateTime, default=datetime.now)    detail=db.Column(db.Text,nullable=False)    question=db.relationship('Question',backref=db.backref('comments'))    author=db.relationship('User',backref=db.backref('comments'))

    转载于:https://www.cnblogs.com/lwn-blog/p/7992789.html

    你可能感兴趣的文章
    ambari 大数据安装利器
    查看>>
    java 上传图片压缩图片
    查看>>
    magento 自定义订单前缀或订单起始编号
    查看>>
    ACM_拼接数字
    查看>>
    计算机基础作业1
    查看>>
    Ubuntu 深度炼丹环境配置
    查看>>
    C#中集合ArrayList与Hashtable的使用
    查看>>
    从一个标准 url 里取出文件的扩展名
    查看>>
    map基本用法
    查看>>
    poj-1163 动态规划
    查看>>
    Golang之interface(多态,类型断言)
    查看>>
    Redis快速入门
    查看>>
    BootStrap---2.表格和按钮
    查看>>
    Linear Algebra lecture 2 note
    查看>>
    CRC计算模型
    查看>>
    Ajax之404,200等查询
    查看>>
    Aizu - 1378 Secret of Chocolate Poles (DP)
    查看>>
    csv HTTP简单表服务器
    查看>>
    OO设计的接口分隔原则
    查看>>
    数据库连接字符串大全 (转载)
    查看>>