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


Python Comment.find方法代码示例

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


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

示例1: api_delete_comment

# 需要导入模块: from models import Comment [as 别名]
# 或者: from models.Comment import find [as 别名]
def api_delete_comment(id, request):
    check_admin(request)  # 检查权限
    comment = yield from Comment.find(id)  # 从数据库中取出评论
    if comment is None:
        raise APIResourceNotFoundError("Comment", "No such a Comment.")
    yield from comment.remove()  # 删除评论
    return dict(id=id)  # 返回被删评论的ID
开发者ID:lovelywxd,项目名称:blogs-web-python,代码行数:9,代码来源:handlers.py

示例2: api_delete_comments

# 需要导入模块: from models import Comment [as 别名]
# 或者: from models.Comment import find [as 别名]
def api_delete_comments(id, request):
    check_admin(request)
    c = yield from Comment.find(id)
    if c is None:
        raise APIResourceNotFoundError('Comment')
    yield from c.remove()
    return dict(id=id)
开发者ID:hellozmz,项目名称:awesome_python3_webapp,代码行数:9,代码来源:handlers.py

示例3: api_delete_comment

# 需要导入模块: from models import Comment [as 别名]
# 或者: from models.Comment import find [as 别名]
def api_delete_comment(id, request):
    logging.info(id)
    check_admin(request)
    comment = yield from Comment.find(id)
    if comment is None:
        raise APIResourceNotFoundError('comment')
    yield from comment.remove()
    return dict(id=id)
开发者ID:crazyAxe,项目名称:aWebapp,代码行数:10,代码来源:handlers.py

示例4: api_delete_comments

# 需要导入模块: from models import Comment [as 别名]
# 或者: from models.Comment import find [as 别名]
def api_delete_comments(id, request):
    #delete a comment
    logging.info(id)
    #管理员检查
    check_admin(request)
    #查询评论id是否有评论
    c = yield from Comment.find(id)
    if c is None:
        raise APIResourceNotFoundError('Comment')
    yield from c.remove()
开发者ID:idyllchow,项目名称:bit-record,代码行数:12,代码来源:handlers.py

示例5: api_delete_comments

# 需要导入模块: from models import Comment [as 别名]
# 或者: from models.Comment import find [as 别名]
def api_delete_comments(id, request):
	logging.info(id)
	# 先检查是否是管理员操作,只有管理员才有删除评论权限
	check_admin(request)
	# 查询一下评论id是否有对应的评论
	c = yield from Comment.find(id)
	# 没有的话抛出错误
	if c is None:
		raise APIResourceNotFoundError('Comment')
	# 有的话删除
	yield from c.remove()
	return dict(id=id)
开发者ID:Eliefly,项目名称:eliefly-blog,代码行数:14,代码来源:handlers.py

示例6: delete_comment

# 需要导入模块: from models import Comment [as 别名]
# 或者: from models.Comment import find [as 别名]
def delete_comment(request, *, id):
    check_admin(request)
    comment = yield from Comment.find(id)
    yield from comment.remove()
    return dict(id=id)
开发者ID:ianzhengnan,项目名称:blog-python3,代码行数:7,代码来源:handlers.py


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