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


Python Category.get_all方法代码示例

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


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

示例1: post

# 需要导入模块: from model import Category [as 别名]
# 或者: from model.Category import get_all [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)
开发者ID:dreampuf,项目名称:bana,代码行数:32,代码来源:admin_views.py

示例2: get

# 需要导入模块: from model import Category [as 别名]
# 或者: from model.Category import get_all [as 别名]
    def get(self, post_id):
        p = Post.get_by_id(int(post_id)) if post_id.isdigit() else None
        if not p:
            self.redirect(config.BLOG_ADMIN_PATH + "post/")
            return
        
        context = {"page_name": u"编辑文章",
                   "page_title": u"编辑文章",
                   "all_category": Category.get_all(),

                   "post.title": p.title,
                   "post.category": p.category.key().name(),
                   "post.url": p.url,
                   "post.tags": ",".join(p.tags),
                   "post.keyword": ",".join(p.keyword),
                   "post.content": p.content,
                   "post.format": p.format }
        self.render("admin_post_editor.html", context)
开发者ID:dreampuf,项目名称:bana,代码行数:20,代码来源:admin_views.py

示例3: get_all_categories

# 需要导入模块: from model import Category [as 别名]
# 或者: from model.Category import get_all [as 别名]
def get_all_categories():
    from model import Category
    category = Category()
    for item in category.get_all():
        print item
开发者ID:chu888chu888,项目名称:Python-Tornado-diggit,代码行数:7,代码来源:test.py


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