本文整理汇总了Python中model.Post.refresh_total方法的典型用法代码示例。如果您正苦于以下问题:Python Post.refresh_total方法的具体用法?Python Post.refresh_total怎么用?Python Post.refresh_total使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类model.Post
的用法示例。
在下文中一共展示了Post.refresh_total方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: post
# 需要导入模块: from model import Post [as 别名]
# 或者: from model.Post import refresh_total [as 别名]
def post(self):
pdict = self.request.POST
try:
#def new(cls, title, category_keyname, author_keyname, url, keyword, tags, content, status=PostStatus.NORMAL, format=PostFormat.PLAIN, enablecomment=True):
tags = pdict.get("post.tags").split(",")
for i in tags:
Tag.Incr(i)
pkey = Post.new(title=pdict.get("post.title"),
category_keyname=pdict.get("post.category").decode(config.CHARSET).encode("utf-8"),
author_keyname=self.session.get("curr_ukey").decode(config.CHARSET).encode("utf-8"),
url=pdict.get("post.url"),
keyword=pdict.get("post.keyword").split(","),
tags=tags,
content=pdict.get("post.content"),
format=pdict.get("post.format") )
p = Post.id(pkey.id())
p.realurl = realurl(p)
Post.put(p)
Post.refresh_total()
except Exception, ex:
context = {}
context.update(self.request.POST)
context["errors_msg"] = ex
context["page_name"] = u"添加文章"
context["page_title"] = u"添加文章"
context["all_category"] = Category.get_all()
self.render("admin_post_editor.html", context)
示例2: rtotal_Index
# 需要导入模块: from model import Post [as 别名]
# 或者: from model.Post import refresh_total [as 别名]
def rtotal_Index(*args, **kw):
Post.refresh_total(func=INDEXPOSTFILTER)
示例3: rtotal_AdminPost
# 需要导入模块: from model import Post [as 别名]
# 或者: from model.Post import refresh_total [as 别名]
def rtotal_AdminPost(*arg, **kw):
Post.refresh_total(func=ADMINPOSTFILTER)