标签:question lock 标签 creat 对象关系映射 def _id _for 建立
@app.route(‘/detail/<question_id>‘)
def detail(question_id):
quest =
return render_template(‘detail.html‘, ques = quest)
{{ ques.title}}
{{ ques.id }}{{ ques.creat_time }}
{{ ques.author.username }}
{{ ques.detail }}
建立评论的对象关系映射:
class Comment(db.Model):
__tablename__=‘comment‘
尝试实现发布评论
标签:question lock 标签 creat 对象关系映射 def _id _for 建立
原文地址:http://www.cnblogs.com/1031353319qq/p/8000475.html