当前位置: 首页>>代码示例>>Python>>正文


Python Comment.user_id方法代码示例

本文整理汇总了Python中models.Comment.user_id方法的典型用法代码示例。如果您正苦于以下问题:Python Comment.user_id方法的具体用法?Python Comment.user_id怎么用?Python Comment.user_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在models.Comment的用法示例。


在下文中一共展示了Comment.user_id方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: tweet_comment

# 需要导入模块: from models import Comment [as 别名]
# 或者: from models.Comment import user_id [as 别名]
def tweet_comment(tweet_id):
    user = current_user()
    if user is not None:
        comment = Comment(request.form)
        comment.tweet_id = tweet_id
        comment.user_id = user.id
        comment.save()
        return redirect(url_for('tweet_comment_view', tweet_id=tweet_id))
    else:
        return redirect(url_for('login_view'))
开发者ID:sunwk,项目名称:small-tweet,代码行数:12,代码来源:app.py

示例2: attach_comment_to_project

# 需要导入模块: from models import Comment [as 别名]
# 或者: from models.Comment import user_id [as 别名]
def attach_comment_to_project(id):
  form = CommentForm()
  if form.validate_on_submit():
    comment = Comment()
    comment.user_id = session['id']
    comment.project_id = id
    comment.comment = form.comment.data
    db.session.add(comment)
    db.session.commit()
    return "success", 201
  return render_template("create_comment.html", form=form, url = "/project/add/" + str(id) + "/comment")
开发者ID:harshk360,项目名称:projectsatillinois,代码行数:13,代码来源:projects_routes.py

示例3: post

# 需要导入模块: from models import Comment [as 别名]
# 或者: from models.Comment import user_id [as 别名]
def post(id):
    post = Post.query.get_or_404(id)
    form = forms.CommentForm()

    if request.method=='POST':
        comment = Comment()
        comment.content = form.content.html
        comment.user_id = current_user.id
        comment.post_id = id
        comment.time_stamp = datetime.now()
        db.session.add(comment)
        db.session.commit()
        return redirect(url_for('.post',id=id,page=-1))

    page = request.args.get('page',1,type=int)
    if page==-1:
        page = (post.comments.count() - 1) / COMMENTS_PER_PAGE + 1
    comments = post.comments.order_by(Comment.time_stamp.asc()).paginate(page,COMMENTS_PER_PAGE,False)

    Post.query.filter(Post.id==id).update({Post.view_times:Post.view_times+1})
    return render_template('post.html',post=post,comments=comments,form=form)
开发者ID:qinms,项目名称:BlogApp,代码行数:23,代码来源:views.py


注:本文中的models.Comment.user_id方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。