本文整理汇总了Python中past.model.status.Status.get方法的典型用法代码示例。如果您正苦于以下问题:Python Status.get方法的具体用法?Python Status.get怎么用?Python Status.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类past.model.status.Status
的用法示例。
在下文中一共展示了Status.get方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: post
# 需要导入模块: from past.model.status import Status [as 别名]
# 或者: from past.model.status.Status import get [as 别名]
def post(id):
intros = [g.user.get_thirdparty_profile(x).get("intro") for x in config.OPENID_TYPE_DICT.values()]
intros = filter(None, intros)
status = Status.get(id)
if not status:
flash(u"访问的文章不存在^^","error")
return render_template("post.html", **locals())
示例2: post
# 需要导入模块: from past.model.status import Status [as 别名]
# 或者: from past.model.status.Status import get [as 别名]
def post(id):
status = Status.get(id)
if not status:
abort(404, "访问的文章不存在^^")
else:
user = User.get(status.user_id)
if user and not check_access_user(user):
if status.category == config.CATE_THEPAST_NOTE:
return redirect("/note/%s" % status.origin_id)
intros = [user.get_thirdparty_profile(x).get("intro") for x in config.OPENID_TYPE_DICT.values()]
intros = filter(None, intros)
return render_template("post.html", config=config, **locals())
else:
abort(403, "没有权限访问该文章")