本文整理汇总了Python中app.models.Comment.calculate_template_parameters方法的典型用法代码示例。如果您正苦于以下问题:Python Comment.calculate_template_parameters方法的具体用法?Python Comment.calculate_template_parameters怎么用?Python Comment.calculate_template_parameters使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app.models.Comment
的用法示例。
在下文中一共展示了Comment.calculate_template_parameters方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: article_comments
# 需要导入模块: from app.models import Comment [as 别名]
# 或者: from app.models.Comment import calculate_template_parameters [as 别名]
def article_comments(id):
form = CommentWriteForm()
# 댓글 쓰기 요청 처리
if form.validate_on_submit():
# 글의 댓글 수 증가
db.session.query(Article).filter_by(id=id).update({
Article.comment: Article.comment + 1
})
# 답글이 아닐 때 빈 문자열("")로 정보가 들어오면 SQL 오류가 발생하므로 None으로 바꿔줍니다.
if not form.parent_id.data:
form.parent_id.data = None
# 댓글 추가
comment = Comment(article_id=id, user_id=g.user.id, content=form.content.data, parent_id=form.parent_id.data)
db.session.add(comment)
db.session.commit()
comment.calculate_template_parameters()
server.send_message_to_all(render_template_string("comment.html", comment=comment))
return redirect(url_for("article", id=id))