本文整理匯總了Python中business.post.Post.get_post方法的典型用法代碼示例。如果您正苦於以下問題:Python Post.get_post方法的具體用法?Python Post.get_post怎麽用?Python Post.get_post使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類business.post.Post
的用法示例。
在下文中一共展示了Post.get_post方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: edit_post
# 需要導入模塊: from business.post import Post [as 別名]
# 或者: from business.post.Post import get_post [as 別名]
def edit_post(post_id):
try:
post = Post.get_post(post_id)
#only author can edit post
if post.author.id != current_user.id and current_user.role != "manager":
abort(403)
return render_template("add_post.html", post=post, categories=default.categories)
except Exception as e:
abort(404)
示例2: show_single_post
# 需要導入模塊: from business.post import Post [as 別名]
# 或者: from business.post.Post import get_post [as 別名]
def show_single_post(post_id):
try:
post = Post.get_post(post_id)
if post:
return render_template("single_post.html", post=post)
else:
abort(404)
except Exception as e:
abort(404)
示例3: test_get_post_valid
# 需要導入模塊: from business.post import Post [as 別名]
# 或者: from business.post.Post import get_post [as 別名]
def test_get_post_valid(self):
post = Post.get_post(1)
self.assertIsNotNone(post)
示例4: test_get_post_not_exist
# 需要導入模塊: from business.post import Post [as 別名]
# 或者: from business.post.Post import get_post [as 別名]
def test_get_post_not_exist(self):
post = Post.get_post(122)
self.assertIsNone(post)
示例5: test_get_post_with_string_id
# 需要導入模塊: from business.post import Post [as 別名]
# 或者: from business.post.Post import get_post [as 別名]
def test_get_post_with_string_id(self):
try:
post = Post.get_post("abc")
self.fail("Expect InvalidFieldError")
except InvalidFieldError:
pass
示例6: test_get_post_with_negative_id
# 需要導入模塊: from business.post import Post [as 別名]
# 或者: from business.post.Post import get_post [as 別名]
def test_get_post_with_negative_id(self):
try:
post = Post.get_post(-1)
self.fail("Expect InvalidFieldError")
except InvalidFieldError:
pass